gramene-search 1.2.28 → 1.2.31
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/01b622fe58ab2cc7.txt +2 -0
- 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 +4 -4
- package/dist/index.js.map +1 -1
- package/dist/rice.07f23ea1.css +2045 -0
- package/dist/rice.07f23ea1.css.map +1 -0
- package/dist/rice.d2bab208.js +270830 -0
- package/dist/rice.d2bab208.js.map +1 -0
- package/dist/rice.fd6dee1b.js +16539 -0
- package/dist/rice.fd6dee1b.js.map +1 -0
- package/dist/rice.html +957 -0
- package/package.json +1 -1
- package/src/components/results/details/Expression.js +2 -2
- package/src/components/results/details/Location.js +1 -1
- package/src/components/results/details/location/dallianceBrowser.js +1 -2
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React from 'react'
|
|
2
2
|
import {connect} from "redux-bundler-react";
|
|
3
3
|
|
|
4
|
-
const PREFIX = (global.location ? global.location.origin + global.location.pathname : '');
|
|
4
|
+
const PREFIX = (global.location ? global.location.origin + global.location.pathname + '/' : '');
|
|
5
5
|
|
|
6
6
|
const Detail = props => {
|
|
7
7
|
const gene = props.geneDocs[props.searchResult.id];
|
|
8
|
-
const url =
|
|
8
|
+
const url = `/static/atlasWidget.html?${gene.taxon_id === 112509 ? gene.synonyms[0] : gene._id}`;
|
|
9
9
|
const height = '500px';
|
|
10
10
|
return (
|
|
11
11
|
<iframe src={url} frameBorder="0" width="100%" height={height}>
|
|
@@ -7,8 +7,7 @@ import isEqual from "lodash/isEqual";
|
|
|
7
7
|
// const ensemblREST = 'https://data.gramene.org/pansite-ensembl';
|
|
8
8
|
|
|
9
9
|
// calculate this once.
|
|
10
|
-
const PREFIX =
|
|
11
|
-
+ 'static/gramene-dalliance/';
|
|
10
|
+
const PREFIX = '/static/gramene-dalliance/';
|
|
12
11
|
|
|
13
12
|
export default class DallianceBrowser extends React.Component {
|
|
14
13
|
|