Skip to content
Snippets Groups Projects
Commit 7a79feb4 authored by juanf's avatar juanf
Browse files

SSDM-1077 : PAPER - Extend Blast with Property search - UI

SVN: 32871
parent 27965beb
No related branches found
No related tags found
No related merge requests found
...@@ -690,7 +690,7 @@ function MainController(profile) { ...@@ -690,7 +690,7 @@ function MainController(profile) {
property : 'score', property : 'score',
sortable : true sortable : true
}, { }, {
label : 'Property or Path', label : 'Found at (Property or Path)',
property : 'location', property : 'location',
sortable : true sortable : true
}, { }, {
...@@ -719,11 +719,11 @@ function MainController(profile) { ...@@ -719,11 +719,11 @@ function MainController(profile) {
if(resultLocation.entityKind) { //Is Sample if(resultLocation.entityKind) { //Is Sample
permId = resultLocation.permId; permId = resultLocation.permId;
kind = resultLocation.entityKind; kind = resultLocation.entityKind;
location = resultLocation.propertyType; location = "Property: " + resultLocation.propertyType;
} else { //Is Data Set File } else { //Is Data Set File
permId = resultLocation.dataSetCode; permId = resultLocation.dataSetCode;
kind = "DATA_SET"; kind = "DATA_SET";
location = resultLocation.pathInDataSet; location = "Path: " + resultLocation.pathInDataSet;
} }
score = result.score; score = result.score;
sequenceStartEnd = resultLocation.alignmentMatch.sequenceStart + "-" + resultLocation.alignmentMatch.sequenceEnd; sequenceStartEnd = resultLocation.alignmentMatch.sequenceStart + "-" + resultLocation.alignmentMatch.sequenceEnd;
......
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