Skip to content
Snippets Groups Projects
Commit 9b32db57 authored by pkupczyk's avatar pkupczyk
Browse files

CCS-6 BaSynthec : Strain DB Integration - correct the columns order when reading the data file

SVN: 26511
parent 9630bf80
No related branches found
No related tags found
No related merge requests found
......@@ -70,8 +70,8 @@ openbis_basynthec.prototype.getStrainsPhenotypesAndPredictions = function(action
$.each(response.result.rows, function(index, row){
result[row[0].value] = {
"name" : row[0].value,
"hasPhenotypes" : row[1].value && row[1].value.toUpperCase() == "TRUE",
"hasPredictions" : row[2].value && row[2].value.toUpperCase() == "TRUE"
"hasPredictions" : row[1].value && row[1].value.toUpperCase() == "TRUE",
"hasPhenotypes" : row[2].value && row[2].value.toUpperCase() == "TRUE"
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment