We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3583af3 commit 407c445Copy full SHA for 407c445
src/app/components/browse/browse.component.ts
@@ -561,7 +561,8 @@ export class BrowseComponent implements OnInit {
561
const edgesRaw = this.edgeTable.data();
562
563
const edges = [];
564
- for (const interaction of edgesRaw) {
+ for (let i = 0; i < edgesRaw.length; i++) {
565
+ const interaction = edgesRaw[i];
566
const id = interaction[5]; // ID
567
const source = interaction[0]; // Gene 1
568
const target = interaction[1]; // Gene 2
0 commit comments