Skip to content

Commit

Permalink
none gui pathfinding matches gui
Browse files Browse the repository at this point in the history
  • Loading branch information
ivp08001 committed Dec 16, 2015
1 parent 943e7e3 commit 5f0f0ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions VQI_PathwayEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,9 @@ var VQI_PathwayEditor = function (parent) {
var target = lines[line][0];
if (typeof (lookup[target]) != "undefined") {
for(entry in lookup[target]){
entry.mut = lines[line][1];
entry.cnv = lines[line][2];
entry.rna = lines[line][3];
lookup[target][entry].mut = lines[line][1];
lookup[target][entry].cnv = lines[line][2];
lookup[target][entry].rna = lines[line][3];
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
<script>
var objVQI_PathwayEditor = new VQI_PathwayEditor("parent");
function load() {
objVQI_PathwayEditor.loadPathwayExternalNoGUI(331);
objVQI_PathwayEditor.loadPathwayExternalNoGUI(334);
}
function findYue() {
objVQI_PathwayEditor.findPathAndScoreExternalYueNoGUI("n0", "n4", function (result) {
objVQI_PathwayEditor.findPathAndScoreExternalYueNoGUI("n0", "n22", function (result) {
console.log(result)
});
}
function findTham() {
objVQI_PathwayEditor.findPathAndScoreExternalThamNoGUI("n0", "n4", function (result) {
objVQI_PathwayEditor.findPathAndScoreExternalThamNoGUI("n0", "n22", function (result) {
console.log(result)
});
}
Expand Down

0 comments on commit 5f0f0ba

Please sign in to comment.