gramene-search 1.2.20 → 1.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.parcel-cache/2b1c1cd7b577d2ca.txt +2 -2
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.html +1 -1
- package/.parcel-cache/fb5cd3a06aebd88f.txt +0 -2
- package/dist/android-chrome-192x192.1c3e8367.png +0 -0
- package/dist/apple-touch-icon-114x114.bfffc776.png +0 -0
- package/dist/apple-touch-icon-120x120.36d8566f.png +0 -0
- package/dist/apple-touch-icon-144x144.878f9d29.png +0 -0
- package/dist/apple-touch-icon-152x152.6d1217c5.png +0 -0
- package/dist/apple-touch-icon-180x180.0d30a358.png +0 -0
- package/dist/apple-touch-icon-57x57.c3d92f4e.png +0 -0
- package/dist/apple-touch-icon-60x60.0cfc5a34.png +0 -0
- package/dist/apple-touch-icon-72x72.9c44ac8c.png +0 -0
- package/dist/apple-touch-icon-76x76.5a933f46.png +0 -0
- package/dist/favicon-16x16.3e40b283.png +0 -0
- package/dist/favicon-32x32.6ebd8f52.png +0 -0
- package/dist/favicon-96x96.ef44eb0f.png +0 -0
- package/dist/genetree.d667cd90.png +0 -0
- package/dist/results.c14120ff.png +0 -0
- package/dist/sorghum.html +0 -956
- package/dist/suggestions.74bf4636.png +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
12779281
|
|
2
|
+
1648566057706769000
|
package/.parcel-cache/data.mdb
CHANGED
|
Binary file
|
package/.parcel-cache/lock.mdb
CHANGED
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -1032,6 +1032,7 @@ var $b8aee296158e1013$var$grameneFilters = {
|
|
|
1032
1032
|
},
|
|
1033
1033
|
selectGrameneFiltersQueryString: function selectGrameneFiltersQueryString(state) {
|
|
1034
1034
|
var hasSpaces = new RegExp(/^[^\[\(].*\s/);
|
|
1035
|
+
var isQuery = new RegExp(/\([a-zA-Z0-9_]+:[a-zA-Z0-9_]+\s/);
|
|
1035
1036
|
function getQuery(node) {
|
|
1036
1037
|
var negate = node.negate ? 'NOT ' : '';
|
|
1037
1038
|
if (node.hasOwnProperty('children')) // do some recursion
|
|
@@ -1040,6 +1041,7 @@ var $b8aee296158e1013$var$grameneFilters = {
|
|
|
1040
1041
|
}).sort().join(" ".concat(node.operation, " ")), ")");
|
|
1041
1042
|
else {
|
|
1042
1043
|
// this node is a suggestion
|
|
1044
|
+
if (isQuery.test(node.fq_value)) return "".concat(negate).concat(node.fq_value);
|
|
1043
1045
|
if (hasSpaces.test(node.fq_value)) return "".concat(negate).concat(node.fq_field, ":\"").concat(node.fq_value, "\"");
|
|
1044
1046
|
else return "".concat(negate).concat(node.fq_field, ":").concat(node.fq_value);
|
|
1045
1047
|
}
|
|
@@ -3503,7 +3505,7 @@ var $57871e966e0c4f66$var$Pathways = /*#__PURE__*/ function(_React$Component) {
|
|
|
3503
3505
|
proxyPrefix: $57871e966e0c4f66$var$reactomeURL,
|
|
3504
3506
|
//'//plantreactome.gramene.org', //'//plantreactomedev.oicr.on.ca', ////cord3084-pc7.science.oregonstate.edu', // reactomedev.oicr.on.ca
|
|
3505
3507
|
placeHolder: this.holderId,
|
|
3506
|
-
width: this.divWrapper.clientWidth - 350,
|
|
3508
|
+
width: this.divWrapper.clientWidth - 350 - 1,
|
|
3507
3509
|
height: 500
|
|
3508
3510
|
});
|
|
3509
3511
|
}
|