GUIDE
- Left-click and drag the background to move the graph
- Left-click and drag the nodes to reorganize
- Left-click a node to view first level connections
- Double left-click a node to navigate to its page
- Double left-click the background to zoom in
- Right-click the background to zoom out
sigma.utils.pkg('sigma.canvas.nodes');
sigma.canvas.nodes.image = (function() {
var _cache = {},
_loading = {},
_callbacks = {};
// Return the renderer itself:
var renderer = function(node, context, settings) {
var args = arguments,
prefix = settings('prefix') || '',
size = node[prefix + 'size'],
color = node.color || settings('defaultNodeColor'),
url = node.url;
if (_cache[url]) {
context.save();
// Draw the clipping disc:
context.beginPath();
context.arc(
node[prefix + 'x'],
node[prefix + 'y'],
node[prefix + 'size'],
0,
Math.PI * 2,
true
);
context.closePath();
context.clip();
// Draw the image
context.drawImage(
_cache[url],
node[prefix + 'x'] - size,
node[prefix + 'y'] - size,
2 * size,
2 * size
);
// Quit the "clipping mode":
context.restore();
// Draw the border:
context.beginPath();
context.arc(
node[prefix + 'x'],
node[prefix + 'y'],
node[prefix + 'size'],
0,
Math.PI * 2,
true
);
context.lineWidth = 1;
context.strokeStyle = node.color || settings('defaultNodeColor');
context.stroke();
} else {
sigma.canvas.nodes.image.cache(url);
sigma.canvas.nodes.def.apply(
sigma.canvas.nodes,
args
);
}
};
// Let's add a public method to cache images, to make it possible to
// preload images before the initial rendering:
renderer.cache = function(url, callback) {
if (callback)
_callbacks[url] = callback;
if (_loading[url])
return;
var img = new Image();
img.onload = function() {
_loading[url] = false;
_cache[url] = img;
if (_callbacks[url]) {
_callbacks[url].call(this, img);
delete _callbacks[url];
}
};
_loading[url] = true;
img.src = url;
};
return renderer;
})();
var i,
s,
o,
offset_left = 0.5,
N = 1,
E = 40,
C = 5,
d = 0.5,
cs = [],
g = {
nodes: [],
edges: []
};
if (!sigma.classes.graph.hasMethod('neighbors')){
sigma.classes.graph.addMethod('neighbors', function(nodeId) {
var k,
neighbors = {},
index = this.allNeighborsIndex[nodeId] || {};
for (k in index)
neighbors[k] = this.nodesIndex[k];
return neighbors;
});
}
//adding the central node
g.nodes.push({
id: 4708,
label: 'Francois-Xavier Weill',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/09/research_pasteur-weill-francois-xavier-34recadre-150x150.jpg',
x: 0,
y: 0,
size: 30,
color: '#DDDDDD'
});
var biggest_node_size = 0;
N=12
// adding node
var x_node = Math.cos(2 * 0 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 0 * Math.PI / N) * 10;
g.nodes.push({
id: 129671,
label: 'PROJECT: Evolutionary history of the classical biotype of Vibrio cholerae O1',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/project/evolutionary-history-of-the-classical-biotype-of-vibrio-cholerae-o1/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 4708129671,
size: 0.5,
source: 4708,
target: 129671,
});
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4713,
label: 'Elisabeth Njamkepo Nguemkam',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-elisabeth-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/elisabeth-njamkepo-nguemkam/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296714713,
size: 0.5,
source: 129671,
target: 4713 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8517,
label: 'Marie Accou-Demartin',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/marie-accou-demartin/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296718517,
size: 0.5,
source: 129671,
target: 8517 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8532,
label: 'Jean Rauzier',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-jean-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/jean-rauzier/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296718532,
size: 0.5,
source: 129671,
target: 8532 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296714708,
size: 0.5,
source: 129671,
target: 4708 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4706,
label: 'Marie-Laure Quilici',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/12/research.pasteur.fr_photo-mlq-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/marie-laure-quilici/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296714706,
size: 0.5,
source: 129671,
target: 4706 });
// adding node
var x_node = Math.cos(2 * 1 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 1 * Math.PI / N) * 10;
g.nodes.push({
id: 129666,
label: 'PROJECT: Genomic insights into the 2016-2017 cholera epidemic in Yemen',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-figure2_weill_yemen_revision2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/project/genomic-insights-into-the-2016-2017-cholera-epidemic-in-yemen/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 4708129666,
size: 0.5,
source: 4708,
target: 129666,
});
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4713) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296664713,
size: 0.5,
source: 129666,
target: 4713 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8532) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296668532,
size: 0.5,
source: 129666,
target: 8532 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 1633,
label: 'Christiane Bouchier',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/christiane-bouchier/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296661633,
size: 0.5,
source: 129666,
target: 1633 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4612,
label: 'Thérèse Malliavin',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_3ccf6f5-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/therese-malliavin/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296664612,
size: 0.5,
source: 129666,
target: 4612 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296664708,
size: 0.5,
source: 129666,
target: 4708 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4706) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296664706,
size: 0.5,
source: 129666,
target: 4706 });
// adding node
var x_node = Math.cos(2 * 2 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 2 * Math.PI / N) * 10;
g.nodes.push({
id: 129659,
label: 'PROJECT: Historical antibiotic-resistant populations of S. enterica serotype Typhimurium',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/07/research_pasteur-fig1_trandien_ast-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/project/historical-antibiotic-resistant-populations-of-s-enterica-serotype-typhimurium/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 4708129659,
size: 0.5,
source: 4708,
target: 129659,
});
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4707,
label: 'Alicia Tran Dien',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-alicia-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/alicia-tran-dien/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 1296594707,
size: 0.5,
source: 129659,
target: 4707 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 1633) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296591633,
size: 0.5,
source: 129659,
target: 1633 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 1296594708,
size: 0.5,
source: 129659,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 3 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 3 * Math.PI / N) * 10;
g.nodes.push({
id: 97958,
label: 'TOOL: Salmonella CRISPR Typing',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/tool/salmonella-crispr-typing/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470897958,
size: 0.5,
source: 4708,
target: 97958,
});
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4712,
label: 'Laétitia Fabre',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-laetitia-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/laetitia-fabre/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 979584712,
size: 0.5,
source: 97958,
target: 4712 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4707) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 979584707,
size: 0.5,
source: 97958,
target: 4707 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 82340,
label: 'Kenzo-Hugo Hillion',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2017/05/research_pasteur-img_5340-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/fr-kenzo-hugo-hillion/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 9795882340,
size: 0.5,
source: 97958,
target: 82340 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 979584708,
size: 0.5,
source: 97958,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 4 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 4 * Math.PI / N) * 10;
g.nodes.push({
id: 66809,
label: 'PROJECT: Phylodynamics of Vibrio cholerae O1 in Africa (1970-2014)',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2016/03/research_pasteur-phylodynamics-of-vibrio-cholerae-o1-in-africa-1970-2010-fig2-weill-02052017-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/project/phylodynamics-of-vibrio-cholerae-o1-in-africa-1970-2010/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470866809,
size: 0.5,
source: 4708,
target: 66809,
});
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4706) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 668094706,
size: 0.5,
source: 66809,
target: 4706 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8532) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 668098532,
size: 0.5,
source: 66809,
target: 8532 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4713) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 668094713,
size: 0.5,
source: 66809,
target: 4713 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 668094708,
size: 0.5,
source: 66809,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 5 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 5 * Math.PI / N) * 10;
g.nodes.push({
id: 66792,
label: 'PROJECT: Private: Histoire évolutive du bacille de la dysenterie épidémique (Shigella dysenteriae de type 1)',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/project/histoire-evolutive-du-bacille-de-la-dysenterie-epidemique-shigella-dysenteriae-de-type-1/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470866792,
size: 0.5,
source: 4708,
target: 66792,
});
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4713) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667924713,
size: 0.5,
source: 66792,
target: 4713 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4705,
label: 'Nizar Fawal',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-nizar-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/nizar-fawal/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667924705,
size: 0.5,
source: 66792,
target: 4705 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4707) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667924707,
size: 0.5,
source: 66792,
target: 4707 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8517) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667928517,
size: 0.5,
source: 66792,
target: 8517 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4699,
label: 'Malika Gouali',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/malika-gouali/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667924699,
size: 0.5,
source: 66792,
target: 4699 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4700,
label: 'Simon Le Hello',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-simon-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/simon-le-hello/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667924700,
size: 0.5,
source: 66792,
target: 4700 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8526,
label: 'Corinne Ruckly',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/corinne-ruckly/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667928526,
size: 0.5,
source: 66792,
target: 8526 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8524,
label: 'Monique Lejay-Collin',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/monique-lejay-collin/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667928524,
size: 0.5,
source: 66792,
target: 8524 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8521,
label: 'Isabelle Carle',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/isabelle-carle/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667928521,
size: 0.5,
source: 66792,
target: 8521 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 6819,
label: 'Chantal Bizet',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_institutpasteur_33760-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/chantal-bizet/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667926819,
size: 0.5,
source: 66792,
target: 6819 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 6980,
label: 'Dominique Clermont',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_dominique-clermont-bis-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/dominique-clermont/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667926980,
size: 0.5,
source: 66792,
target: 6980 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4780,
label: 'Philippe Sansonetti',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_philippe-sansonetti-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/philippe-sansonetti/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 667924780,
size: 0.5,
source: 66792,
target: 4780 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 1633) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667921633,
size: 0.5,
source: 66792,
target: 1633 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667924708,
size: 0.5,
source: 66792,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 6 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 6 * Math.PI / N) * 10;
g.nodes.push({
id: 66765,
label: 'PROJECT: Phylogenomics of Shiga’s epidemic dysentery bacillus (Shigella dysenteriae type 1)',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2016/03/research.pasteur.fr_fig1_nmicrobiol_edited18012016-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/project/phylogenomics-of-shigas-epidemic-dysentery-bacillus-shigella-dysenteriae-type-1/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470866765,
size: 0.5,
source: 4708,
target: 66765,
});
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4713) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654713,
size: 0.5,
source: 66765,
target: 4713 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4705) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654705,
size: 0.5,
source: 66765,
target: 4705 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4707) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654707,
size: 0.5,
source: 66765,
target: 4707 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4700) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654700,
size: 0.5,
source: 66765,
target: 4700 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8524) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667658524,
size: 0.5,
source: 66765,
target: 8524 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8521) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667658521,
size: 0.5,
source: 66765,
target: 8521 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8526) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667658526,
size: 0.5,
source: 66765,
target: 8526 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4699) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654699,
size: 0.5,
source: 66765,
target: 4699 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8517) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667658517,
size: 0.5,
source: 66765,
target: 8517 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 1633) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667651633,
size: 0.5,
source: 66765,
target: 1633 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4780) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654780,
size: 0.5,
source: 66765,
target: 4780 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 6819) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667656819,
size: 0.5,
source: 66765,
target: 6819 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 6980) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667656980,
size: 0.5,
source: 66765,
target: 6980 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 11479,
label: 'Raymond Bercion',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/riip_member/raymond-bercion/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 6676511479,
size: 0.5,
source: 66765,
target: 11479 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 11480,
label: 'Amy Gassama',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2016/06/278-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/riip_member/amy-gassama/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 6676511480,
size: 0.5,
source: 66765,
target: 11480 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 667654708,
size: 0.5,
source: 66765,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 7 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 7 * Math.PI / N) * 10;
g.nodes.push({
id: 27280,
label: 'WHOCC: Typing and antibiotic resistance of Salmonella (WHO-CC)',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research_pasteur-salmonella-ccoms-salmonella-institutpasteur-i03719-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/whocc/salmonella/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470827280,
size: 0.5,
source: 4708,
target: 27280,
});
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8527,
label: 'Sylvie Issenhuth-Jeanjean',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-sylvie-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sylvie-issenhuth-jeanjean/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 272808527,
size: 0.5,
source: 27280,
target: 8527 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 272804708,
size: 0.5,
source: 27280,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 8 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 8 * Math.PI / N) * 10;
g.nodes.push({
id: 27170,
label: 'NRC: Escherichia coli, Shigella, Salmonella',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research_pasteur-escherichia-coli-shigella-salmonella-cnr-coli-shigelle-salmonella-institutpasteur-i03721-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/nrc/escherichia-coli-shigella-salmonella/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470827170,
size: 0.5,
source: 4708,
target: 27170,
});
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8531,
label: 'Véronique Guibert',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-vero-final1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/veronique-guibert/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 271708531,
size: 0.5,
source: 27170,
target: 8531 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8517) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 271708517,
size: 0.5,
source: 27170,
target: 8517 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4712) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 271704712,
size: 0.5,
source: 27170,
target: 4712 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8521) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 271708521,
size: 0.5,
source: 27170,
target: 8521 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8526) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 271708526,
size: 0.5,
source: 27170,
target: 8526 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8524) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 271708524,
size: 0.5,
source: 27170,
target: 8524 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8523,
label: 'Brigitte Chavinier-Jove',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/12/research.pasteur.fr_photo-bcj-final-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/brigitte-chavinier-jove/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 271708523,
size: 0.5,
source: 27170,
target: 8523 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8522,
label: 'Chantal Belhassen',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chantal-belhassen/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 271708522,
size: 0.5,
source: 27170,
target: 8522 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 66828,
label: 'Magali Ravel',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/magali-ravel/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 2717066828,
size: 0.5,
source: 27170,
target: 66828 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 54715,
label: 'Estelle Serre',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-final-estelle-2-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/estelle-serre/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 2717054715,
size: 0.5,
source: 27170,
target: 54715 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 107013,
label: 'Florence Juglas',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/03/research_pasteur-florence-juglapo.po-1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/florence-juglas/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 27170107013,
size: 0.5,
source: 27170,
target: 107013 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 81104,
label: 'Carole Gaston',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-photo-carole-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carole-gaston/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 2717081104,
size: 0.5,
source: 27170,
target: 81104 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 271704708,
size: 0.5,
source: 27170,
target: 4708 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 53045,
label: 'Sophie Lefevre',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-sophie-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/sophie-lefevre/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 2717053045,
size: 0.5,
source: 27170,
target: 53045 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 113299,
label: 'María Pardos de la Gándara',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-me_ru-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/maria-pardos-de-la-gandara/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 27170113299,
size: 0.5,
source: 27170,
target: 113299 });
// adding node
var x_node = Math.cos(2 * 9 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 9 * Math.PI / N) * 10;
g.nodes.push({
id: 14686,
label: 'PROGRAM_PROJECT: LabEx IBEID – Integrative Biology of Emerging Infectious Diseases',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_labex-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/program_project/integrative-biology-of-emerging-infectious-diseases/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470814686,
size: 0.5,
source: 4708,
target: 14686,
});
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4779,
label: 'Thierry Planchenault',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/10/research.pasteur.fr_thierry_identité-light1-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/thierry-planchenault/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 146864779,
size: 0.5,
source: 14686,
target: 4779 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 3949,
label: 'Philippe Bastin',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/06/research.pasteur.fr_philippe_bastin-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/philippe-bastin/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 146863949,
size: 0.5,
source: 14686,
target: 3949 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4775,
label: 'Carla Saleh',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/07/research.pasteur.fr_ha68-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/carla-saleh/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 146864775,
size: 0.5,
source: 14686,
target: 4775 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4955,
label: 'Marco Vignuzzi',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/09/research.pasteur.fr_img_2799-copy-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/marco-vignuzzi/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 146864955,
size: 0.5,
source: 14686,
target: 4955 });
// adding node
var x_node = Math.cos(2 * 10 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 10 * Math.PI / N) * 10;
g.nodes.push({
id: 19912,
label: 'PROJECT: Escherichia coli-Shigella-Salmonella',
x: x_node,
y: y_node,
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/project/escherichia-coli-shigella-salmonella/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 470819912,
size: 0.5,
source: 4708,
target: 19912,
});
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4706) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124706,
size: 0.5,
source: 19912,
target: 4706 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4700) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124700,
size: 0.5,
source: 19912,
target: 4700 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4699) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124699,
size: 0.5,
source: 19912,
target: 4699 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 4710,
label: 'Annick Robert-Pillot',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2015/11/research.pasteur.fr_photo-annick-final-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/annick-robert-pillot/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 199124710,
size: 0.5,
source: 19912,
target: 4710 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4713) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124713,
size: 0.5,
source: 19912,
target: 4713 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8527) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128527,
size: 0.5,
source: 19912,
target: 8527 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8531) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128531,
size: 0.5,
source: 19912,
target: 8531 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8517) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128517,
size: 0.5,
source: 19912,
target: 8517 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8523) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128523,
size: 0.5,
source: 19912,
target: 8523 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4712) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124712,
size: 0.5,
source: 19912,
target: 4712 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8529,
label: 'Martine Garnier',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/martine-garnier/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 199128529,
size: 0.5,
source: 19912,
target: 8529 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8059,
label: 'Chrystelle Roux',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/chrystelle-roux/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 199128059,
size: 0.5,
source: 19912,
target: 8059 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8524) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128524,
size: 0.5,
source: 19912,
target: 8524 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8521) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128521,
size: 0.5,
source: 19912,
target: 8521 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8526) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128526,
size: 0.5,
source: 19912,
target: 8526 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8532) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199128532,
size: 0.5,
source: 19912,
target: 8532 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 8525,
label: 'Sylviane Etiemble',
type: 'image',
url: '',
page_url: 'https://research.pasteur.fr/en/member/sylviane-etiemble/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 199128525,
size: 0.5,
source: 19912,
target: 8525 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4707) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124707,
size: 0.5,
source: 19912,
target: 4707 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 199124708,
size: 0.5,
source: 19912,
target: 4708 });
// adding node
var x_node = Math.cos(2 * 11 * Math.PI / N) * 10;
var y_node = Math.sin(2 * 11 * Math.PI / N) * 10;
g.nodes.push({
id: 6227,
label: 'TEAM: Enteric Bacterial Pathogens',
x: x_node,
y: y_node,
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/01/research_pasteur-unite_fx-weill_institutpasteur_13946-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/team/enteric-bacterial-pathogens/',
size: 35,
color: '#DDDDDD'
});
//link content to central post
g.edges.push({
id: 47086227,
size: 0.5,
source: 4708,
target: 6227,
});
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4706) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62274706,
size: 0.5,
source: 6227,
target: 4706 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 53045) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 622753045,
size: 0.5,
source: 6227,
target: 53045 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4710) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62274710,
size: 0.5,
source: 6227,
target: 4710 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 81104) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 622781104,
size: 0.5,
source: 6227,
target: 81104 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4712) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62274712,
size: 0.5,
source: 6227,
target: 4712 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4713) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62274713,
size: 0.5,
source: 6227,
target: 4713 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8517) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278517,
size: 0.5,
source: 6227,
target: 8517 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8522) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278522,
size: 0.5,
source: 6227,
target: 8522 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8521) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278521,
size: 0.5,
source: 6227,
target: 8521 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8523) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278523,
size: 0.5,
source: 6227,
target: 8523 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8531) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278531,
size: 0.5,
source: 6227,
target: 8531 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8527) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278527,
size: 0.5,
source: 6227,
target: 8527 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8524) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278524,
size: 0.5,
source: 6227,
target: 8524 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8532) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278532,
size: 0.5,
source: 6227,
target: 8532 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 66828) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 622766828,
size: 0.5,
source: 6227,
target: 66828 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 8526) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62278526,
size: 0.5,
source: 6227,
target: 8526 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 54715) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 622754715,
size: 0.5,
source: 6227,
target: 54715 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 107013) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 6227107013,
size: 0.5,
source: 6227,
target: 107013 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 113299) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 6227113299,
size: 0.5,
source: 6227,
target: 113299 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 113288,
label: 'Slim El-Khiari',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2018/09/research_pasteur-potrait_pasteur-150x150.jpg',
page_url: 'https://research.pasteur.fr/en/member/slim-el-khiari/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 6227113288,
size: 0.5,
source: 6227,
target: 113288 });
//check if content already exist
if (x_node<0){
x_site = x_node + ((Math.random() * 2)-1) - offset_left;
}else{
x_site = x_node + ((Math.random() * 2)-1) + offset_left;
}
if (y_node<0){
y_site = y_node + ((Math.random() * 2)-1) - offset_left;
}else{
y_site = y_node + ((Math.random() * 2)-1) + offset_left;
}
// adding site
g.nodes.push({
id: 123063,
label: 'Hawa Yaffa',
type: 'image',
url: 'https://research.pasteur.fr/wp-content/uploads/2019/02/research_pasteur-photo-hawa-150x150.png',
page_url: 'https://research.pasteur.fr/en/member/hawa-yaffa/',
x: x_site,
y: y_site,
size: 10,
color: '#dddddd'
});
//link to content
g.edges.push({
id: 6227123063,
size: 0.5,
source: 6227,
target: 123063 });
//check if content already exist
// update node size depending on the amount of edges
g.nodes.forEach(function(n) {
if (n.id == 4708) {
n.size = n.size + 8;
}
});
//link to content
g.edges.push({
id: 62274708,
size: 0.5,
source: 6227,
target: 4708 });
var s = new sigma({
//container: document.getElementById('graph-main'),
graph: g,
renderer: {
// IMPORTANT:
// This works only with the canvas renderer, so the
// renderer type set as "canvas" is necessary here.
container: document.getElementById('graph-main'),
type: 'canvas'
},
settings: {
minNodeSize: 6,
maxNodeSize: 35,
mouseWheelEnabled: false,
font: 'Montserrat',
labelThreshold:25,
borderSize:1,
defaultNodeBorderColor: '#999',
sideMargin:25,
}
});
// We first need to save the original colors of our
// nodes and edges, like this:
s.graph.nodes().forEach(function(n) {
n.originalColor = n.color;
});
s.graph.edges().forEach(function(e) {
e.originalColor = e.color;
});
// When a node is clicked, we check for each node
// if it is a neighbor of the clicked one. If not,
// we set its color as grey, and else, it takes its
// original color.
// We do the same for the edges, and we only keep
// edges that have both extremities colored.
s.bind('clickNode', function(e) {
var nodeId = e.data.node.id,
toKeep = s.graph.neighbors(nodeId);
toKeep[nodeId] = e.data.node;
s.graph.nodes().forEach(function(n) {
if (toKeep[n.id])
n.color = '#35a9f5';
else
n.color = '#dddddd';
});
s.graph.edges().forEach(function(e) {
if (toKeep[e.source] && toKeep[e.target])
e.color = '#35a9f5';
else
e.color = '#dddddd';
});
// Since the data has been modified, we need to
// call the refresh method to make the colors
// update effective.
s.refresh();
});
// When the stage is clicked, we just color each
// node and edge with its original color.
s.bind('clickStage', function(e) {
s.graph.nodes().forEach(function(n) {
n.color = n.originalColor;
});
s.graph.edges().forEach(function(e) {
e.color = e.originalColor;
});
// Same as in the previous event:
s.refresh();
});
s.bind("doubleClickNode", function (e) {
$("#canvas-wrap, .sigma-scene, .sigma-mouse").val();
ajax_load_page( e.data.node.page_url );
});
var c = s.camera;
s.bind("rightClickStage", function (e) {
sigma.misc.animation.camera(c, {
ratio: c.ratio * c.settings('zoomingRatio')
}, {
duration: 200
});
});
// Configure the noverlap layout:
var noverlapListener = s.configNoverlap({
nodeMargin: 10,
scaleNodes: 0.3,
gridSize: 1,
easing: 'quadraticInOut', // animation transition function
duration: 4000 // animation duration. Long here for the purposes of this example only
});
// Bind the events:
noverlapListener.bind('start stop interpolate', function(e) {
//console.log(e.type);
if(e.type === 'start') {
//console.time('noverlap');
}
if(e.type === 'interpolate') {
//console.timeEnd('noverlap');
}
});
// Start the layout:
s.startNoverlap();
//s.refresh();
// Initialize the dragNodes plugin:
var dragListener = sigma.plugins.dragNodes(s, s.renderers[0]);
dragListener.bind('startdrag', function(event) {
});
dragListener.bind('drag', function(event) {
});
dragListener.bind('drop', function(event) {
});
dragListener.bind('dragend', function(event) {
});