gramene-search 1.6.8 → 1.6.9
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/70f1f7555dda250d-AssetGraph-0 +0 -0
- package/.parcel-cache/7b8e4611c0f03524-AssetGraph-0 +0 -0
- package/.parcel-cache/adb9e64d5da6fbba-AssetGraph-0 +0 -0
- package/.parcel-cache/d48c91545c145068-BundleGraph-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-524f09471ce7017b-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/snapshot-369948a06d23ec44.txt +2 -2
- package/.parcel-cache/snapshot-524f09471ce7017b.txt +2 -2
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/results/details/VEP.js +13 -6
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/.parcel-cache/data.mdb
CHANGED
|
Binary file
|
package/.parcel-cache/lock.mdb
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
156394149
|
|
2
|
+
1729101128735480000
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
156393539
|
|
2
|
+
1729101120946195000
|
package/dist/index.js
CHANGED
|
@@ -3481,6 +3481,7 @@ const $283508ffcf8a47c4$var$GridWithGroups = ({ groups: groups, gene_id: gene_id
|
|
|
3481
3481
|
{
|
|
3482
3482
|
field: "pop",
|
|
3483
3483
|
headerName: "Study",
|
|
3484
|
+
flex: 1,
|
|
3484
3485
|
cellRenderer: (params)=>{
|
|
3485
3486
|
if (params.data.summary || params.data.tally === 1) return params.value;
|
|
3486
3487
|
return null;
|
|
@@ -3489,6 +3490,7 @@ const $283508ffcf8a47c4$var$GridWithGroups = ({ groups: groups, gene_id: gene_id
|
|
|
3489
3490
|
{
|
|
3490
3491
|
field: "conseq",
|
|
3491
3492
|
headerName: "VEP consequence",
|
|
3493
|
+
flex: 1,
|
|
3492
3494
|
cellRenderer: (params)=>{
|
|
3493
3495
|
if (params.data.summary || params.data.tally === 1) return params.value;
|
|
3494
3496
|
return null;
|
|
@@ -3497,6 +3499,7 @@ const $283508ffcf8a47c4$var$GridWithGroups = ({ groups: groups, gene_id: gene_id
|
|
|
3497
3499
|
{
|
|
3498
3500
|
field: "status",
|
|
3499
3501
|
headerName: "Allele status",
|
|
3502
|
+
flex: 1,
|
|
3500
3503
|
cellRenderer: (params)=>{
|
|
3501
3504
|
if (params.data.summary || params.data.tally === 1) return params.value;
|
|
3502
3505
|
return null;
|
|
@@ -3505,6 +3508,7 @@ const $283508ffcf8a47c4$var$GridWithGroups = ({ groups: groups, gene_id: gene_id
|
|
|
3505
3508
|
{
|
|
3506
3509
|
field: "accession",
|
|
3507
3510
|
headerName: "Order Germplasm",
|
|
3511
|
+
flex: 1,
|
|
3508
3512
|
cellRenderer: (params)=>{
|
|
3509
3513
|
if (params.value) return /*#__PURE__*/ (0, $gXNCa$reactjsxruntime.jsx)($283508ffcf8a47c4$var$AccessionLink, {
|
|
3510
3514
|
germplasm: params.value.germplasm,
|
|
@@ -3521,9 +3525,20 @@ const $283508ffcf8a47c4$var$GridWithGroups = ({ groups: groups, gene_id: gene_id
|
|
|
3521
3525
|
return null;
|
|
3522
3526
|
}
|
|
3523
3527
|
},
|
|
3528
|
+
{
|
|
3529
|
+
field: "synonym",
|
|
3530
|
+
headerName: "Synonym",
|
|
3531
|
+
flex: 1,
|
|
3532
|
+
cellRenderer: (params)=>{
|
|
3533
|
+
console.log(params.data);
|
|
3534
|
+
if (params.data.accession) return params.data.accession.germplasm.ens_id;
|
|
3535
|
+
return null;
|
|
3536
|
+
}
|
|
3537
|
+
},
|
|
3524
3538
|
{
|
|
3525
3539
|
field: "search",
|
|
3526
3540
|
headerName: "All LOF Genes",
|
|
3541
|
+
flex: 1,
|
|
3527
3542
|
cellRenderer: (params)=>{
|
|
3528
3543
|
if (params.data.accession) {
|
|
3529
3544
|
const currentURL = new URL(window.location.href);
|
|
@@ -3558,7 +3573,8 @@ const $283508ffcf8a47c4$var$GridWithGroups = ({ groups: groups, gene_id: gene_id
|
|
|
3558
3573
|
className: "ag-theme-quartz",
|
|
3559
3574
|
style: {
|
|
3560
3575
|
height: tableHeight,
|
|
3561
|
-
width: "100%"
|
|
3576
|
+
width: "100%",
|
|
3577
|
+
maxWidth: "1200px"
|
|
3562
3578
|
},
|
|
3563
3579
|
children: /*#__PURE__*/ (0, $gXNCa$reactjsxruntime.jsx)((0, $gXNCa$aggridreact.AgGridReact), {
|
|
3564
3580
|
rowData: getVisibleRowData(),
|