gramene-search 1.6.2 → 1.6.4
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/12c2ac26a83b0e33 +0 -0
- package/.parcel-cache/13241643a33ce8ed +0 -0
- package/.parcel-cache/3d581284675046c6 +0 -0
- package/.parcel-cache/43baead379789480 +0 -0
- package/.parcel-cache/4987902b3f9787cc-BundleGraph-0 +0 -0
- package/.parcel-cache/56ba3face9690f8b-BundleGraph-0 +0 -0
- package/.parcel-cache/5b4f2c99ec04bf49-AssetGraph-0 +0 -0
- package/.parcel-cache/70f1f7555dda250d-AssetGraph-0 +0 -0
- package/.parcel-cache/75917750f148582a +0 -0
- package/.parcel-cache/7b8e4611c0f03524-AssetGraph-0 +0 -0
- package/.parcel-cache/7c54988bfe0947ac +0 -0
- package/.parcel-cache/7f973df67467291d-AssetGraph-0 +0 -0
- package/.parcel-cache/8882a8f68ea22235 +0 -0
- package/.parcel-cache/9ed3c0dffa18099e +0 -0
- package/.parcel-cache/adb9e64d5da6fbba-AssetGraph-0 +0 -0
- package/.parcel-cache/aea3b3f00e39e7d7 +0 -0
- package/.parcel-cache/b4a7d80971a57169-BundleGraph-0 +0 -0
- package/.parcel-cache/baeab7b2fd8ed441 +0 -0
- package/.parcel-cache/c0a6f93df69d20be +0 -0
- package/.parcel-cache/cadf66668af753d0 +0 -0
- package/.parcel-cache/d3d5a0c046bd2fee +0 -0
- package/.parcel-cache/d48c91545c145068-BundleGraph-0 +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/e382ef13c33de3db-AssetGraph-0 +0 -0
- package/.parcel-cache/e80b459410ade898 +0 -0
- package/.parcel-cache/ef56c415264d359e +0 -0
- package/.parcel-cache/f1471b5a88ba6716 +0 -0
- package/.parcel-cache/fa1c0991a1e3d246 +0 -0
- package/.parcel-cache/fa7f3db05903caf2 +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/.parcel-cache/requestGraph-2b56c4c5947cf88b-0 +0 -0
- package/.parcel-cache/requestGraph-369948a06d23ec44-0 +0 -0
- package/.parcel-cache/requestGraph-524f09471ce7017b-0 +0 -0
- package/.parcel-cache/requestGraph-62897db56b555037-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-2b56c4c5947cf88b-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-369948a06d23ec44-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-524f09471ce7017b-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-62897db56b555037-0 +0 -0
- package/.parcel-cache/snapshot-2b56c4c5947cf88b.txt +2 -0
- package/.parcel-cache/snapshot-369948a06d23ec44.txt +2 -2
- package/.parcel-cache/snapshot-524f09471ce7017b.txt +2 -0
- package/.parcel-cache/snapshot-62897db56b555037.txt +2 -0
- package/dist/BAR-logo.fb7d0f73.png +0 -0
- package/dist/Study.5ff9518c.js +137 -0
- package/dist/Study.5ff9518c.js.map +1 -0
- package/dist/expression-atlas-logo.87d25571.png +0 -0
- package/dist/genetree.145467e3.png +0 -0
- package/dist/index.css +1555 -0
- package/dist/index.css.map +1 -0
- package/dist/index.js +5673 -0
- package/dist/index.js.map +1 -0
- package/dist/results.e437a98f.png +0 -0
- package/dist/suggestions.7b2830b6.png +0 -0
- package/package.json +2 -2
- package/src/components/results/GeneList.js +1 -1
- package/src/demo.js +3 -2
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -295,7 +295,7 @@ class Gene extends React.Component {
|
|
|
295
295
|
</h3>
|
|
296
296
|
</div>
|
|
297
297
|
{searchResult.synonyms && <small className="gene-synonyms">{searchResult.synonyms.join(', ')}</small>}
|
|
298
|
-
{numWordsInDescription > 1 && <p className="gene-description">{searchResult.description}</p>}
|
|
298
|
+
{(numWordsInDescription > 1 || searchResult.can_show.pubs) && <p className="gene-description">{searchResult.description}</p>}
|
|
299
299
|
</div>
|
|
300
300
|
{this.renderMetadata()}
|
|
301
301
|
</div>
|
package/src/demo.js
CHANGED
|
@@ -136,8 +136,8 @@ const panSites = [
|
|
|
136
136
|
url: 'https://www.sorghumbase.org',
|
|
137
137
|
ensemblURL: 'https://ensembl-dev.sorghumbase.org',
|
|
138
138
|
ensemblSite: 'https://ensembl-dev.sorghumbase.org',
|
|
139
|
-
ensemblRest: 'https://data.gramene.org/pansite-ensembl-
|
|
140
|
-
grameneData: 'https://data.sorghumbase.org/
|
|
139
|
+
ensemblRest: 'https://data.gramene.org/pansite-ensembl-108',
|
|
140
|
+
grameneData: 'https://data.sorghumbase.org/sorghum_v8',
|
|
141
141
|
ga: 'G-L5KXDCCZ16',
|
|
142
142
|
targetTaxonId: 4558003,
|
|
143
143
|
alertText: 'Click the search icon in the menu bar or type / to search',
|
|
@@ -230,6 +230,7 @@ const panSites = [
|
|
|
230
230
|
grameneData: 'https://data.gramene.org/oryza_v8',
|
|
231
231
|
targetTaxonId: 3702,
|
|
232
232
|
alertText: 'Rice site',
|
|
233
|
+
showViews: true,
|
|
233
234
|
details: {
|
|
234
235
|
sequences: true,
|
|
235
236
|
VEP: true,
|