gramene-search 1.6.15 → 1.6.17
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/4987902b3f9787cc-BundleGraph-0 +0 -0
- package/.parcel-cache/7b8e4611c0f03524-AssetGraph-0 +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/.parcel-cache/requestGraph-369948a06d23ec44-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-369948a06d23ec44-0 +0 -0
- package/.parcel-cache/snapshot-369948a06d23ec44.txt +2 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/bundles/docs.js +3 -0
- package/src/components/results/details/VEP.js +1 -1
- package/.parcel-cache/adb9e64d5da6fbba-AssetGraph-0 +0 -0
- package/.parcel-cache/d48c91545c145068-BundleGraph-0 +0 -0
- package/.parcel-cache/requestGraph-524f09471ce7017b-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-524f09471ce7017b-0 +0 -0
- package/.parcel-cache/snapshot-524f09471ce7017b.txt +0 -2
|
Binary file
|
|
Binary file
|
package/.parcel-cache/data.mdb
CHANGED
|
Binary file
|
package/.parcel-cache/lock.mdb
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
65154376
|
|
2
|
+
1734461129352240000
|
package/dist/index.js
CHANGED
|
@@ -1545,6 +1545,7 @@ const $671312b287158a8a$var$grameneDocs = {
|
|
|
1545
1545
|
function update_taxon_name(node) {
|
|
1546
1546
|
if (maps.hasOwnProperty(node.taxon_id)) node.taxon_name = maps[node.taxon_id].display_name;
|
|
1547
1547
|
else if (node.taxon_id === 1100004558) node.taxon_name = "Sorghum bicolor";
|
|
1548
|
+
if (node.taxon_id === 45580023 && node.hasOwnProperty("children")) node.taxon_name = "Sorghum bicolor";
|
|
1548
1549
|
if (node.taxon_id === 45770001 && node.hasOwnProperty("children")) node.taxon_name = "Zea mays";
|
|
1549
1550
|
if (node.taxon_id === 297600009 && node.hasOwnProperty("children")) node.taxon_name = "Vitis vinifera";
|
|
1550
1551
|
if (node.hasOwnProperty("children")) node.children.forEach((c)=>update_taxon_name(c));
|
|
@@ -3442,7 +3443,7 @@ function $283508ffcf8a47c4$var$group_germplasm(gene, germplasmLUT, vep_obj) {
|
|
|
3442
3443
|
Object.entries(vep_obj).forEach(([key, accessions])=>{
|
|
3443
3444
|
const parts = key.split("__");
|
|
3444
3445
|
if (parts[0] === "VEP") {
|
|
3445
|
-
if (parts[1] !== "merged") accessions.forEach((ens_id)=>{
|
|
3446
|
+
if (parts[1] !== "merged") accessions.filter((ens_id)=>germplasmLUT.hasOwnProperty(ens_id)).forEach((ens_id)=>{
|
|
3446
3447
|
const germplasm = germplasmLUT[ens_id][0];
|
|
3447
3448
|
const pop = $283508ffcf8a47c4$var$study_info[parts[3]][parts[4]];
|
|
3448
3449
|
const conseq = parts[1].replaceAll("_", " ");
|