kuzeko / graph-databases-testsuite

Docker Images, installation scripts, and testing & benchmarking suite for Graph Databases
https://graphbenchmark.com
MIT License
36 stars 9 forks source link

Yeast datasets incorrect number of edges #22

Open lucassardois opened 3 years ago

lucassardois commented 3 years ago

I have tried to import the yeast.json dataset. Once loaded the nodes count is 2361 as expected from your paper. But, you state that the edges count must be around 7,1K, when imported it say that the edges count is around 14,1K.

I got this value by using node.js and doing the following:

let dataset = require('./yeast.json')
console.log(dataset.edges.length) // output: 14364

Can you confirm that there is a mistake in the provided dataset?