gramene-search 2.0.8 → 2.0.10
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/83e7562660f7cc15-BundleGraph +0 -0
- package/.parcel-cache/d3a1b9507cb44047-AssetGraph +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/dc1da35000e13623-RequestGraph +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/.parcel-cache/snapshot-dc1da35000e13623.txt +2 -2
- package/dist/index.css +129 -31
- package/dist/index.css.map +1 -1
- package/dist/index.js +987 -437
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/bundles/index.js +2 -2
- package/src/bundles/{gsea.js → ontologyEnrichment.js} +156 -182
- package/src/bundles/views.js +3 -3
- package/src/components/exprViz/ExprTable.js +23 -2
- package/src/components/exprViz/ExprVizView.js +82 -43
- package/src/components/exprViz/HeatmapPlot.js +376 -0
- package/src/components/exprViz/styles.css +83 -0
- package/src/components/geneSearchUI.js +2 -2
- package/src/components/results/{GSEA.js → OntologyEnrichment.js} +152 -99
- package/src/components/results/{gsea.css → ontologyEnrichment.css} +55 -33
|
Binary file
|
|
Binary file
|
package/.parcel-cache/data.mdb
CHANGED
|
Binary file
|
|
Binary file
|
package/.parcel-cache/lock.mdb
CHANGED
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
327014445
|
|
2
|
+
1777485373977499000
|
package/dist/index.css
CHANGED
|
@@ -2872,6 +2872,83 @@ code.fasta {
|
|
|
2872
2872
|
font-weight: 600;
|
|
2873
2873
|
}
|
|
2874
2874
|
|
|
2875
|
+
.exprviz-hm-container {
|
|
2876
|
+
width: 100%;
|
|
2877
|
+
height: 100%;
|
|
2878
|
+
position: relative;
|
|
2879
|
+
overflow-x: auto;
|
|
2880
|
+
}
|
|
2881
|
+
|
|
2882
|
+
.exprviz-hm-inner {
|
|
2883
|
+
flex-direction: column;
|
|
2884
|
+
min-width: 100%;
|
|
2885
|
+
height: 100%;
|
|
2886
|
+
display: flex;
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2889
|
+
.exprviz-hm-container svg {
|
|
2890
|
+
display: block;
|
|
2891
|
+
}
|
|
2892
|
+
|
|
2893
|
+
.exprviz-hm-header {
|
|
2894
|
+
background: #fff;
|
|
2895
|
+
border-bottom: 1px solid #e0e0e0;
|
|
2896
|
+
flex: none;
|
|
2897
|
+
}
|
|
2898
|
+
|
|
2899
|
+
.exprviz-hm-body {
|
|
2900
|
+
flex: auto;
|
|
2901
|
+
min-height: 0;
|
|
2902
|
+
overflow: hidden auto;
|
|
2903
|
+
}
|
|
2904
|
+
|
|
2905
|
+
.exprviz-hm-collabel {
|
|
2906
|
+
fill: #222;
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
.exprviz-hm-rowlabels text {
|
|
2910
|
+
fill: #444;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2913
|
+
.exprviz-hm-cells rect {
|
|
2914
|
+
shape-rendering: crispEdges;
|
|
2915
|
+
cursor: crosshair;
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
.exprviz-hm-legend {
|
|
2919
|
+
pointer-events: auto;
|
|
2920
|
+
z-index: 2;
|
|
2921
|
+
background: #ffffffeb;
|
|
2922
|
+
border: 1px solid #d0d7de;
|
|
2923
|
+
border-radius: 3px;
|
|
2924
|
+
gap: 6px;
|
|
2925
|
+
padding: 3px 6px;
|
|
2926
|
+
font-size: .72rem;
|
|
2927
|
+
line-height: 1.1;
|
|
2928
|
+
display: flex;
|
|
2929
|
+
position: absolute;
|
|
2930
|
+
top: 6px;
|
|
2931
|
+
right: 6px;
|
|
2932
|
+
}
|
|
2933
|
+
|
|
2934
|
+
.exprviz-hm-legend-bin {
|
|
2935
|
+
align-items: center;
|
|
2936
|
+
gap: 3px;
|
|
2937
|
+
display: flex;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2940
|
+
.exprviz-hm-legend-swatch {
|
|
2941
|
+
border: 1px solid #00000026;
|
|
2942
|
+
width: 14px;
|
|
2943
|
+
height: 14px;
|
|
2944
|
+
display: inline-block;
|
|
2945
|
+
}
|
|
2946
|
+
|
|
2947
|
+
.exprviz-hm-legend-label {
|
|
2948
|
+
color: #333;
|
|
2949
|
+
font-variant-numeric: tabular-nums;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2875
2952
|
.exprviz-table {
|
|
2876
2953
|
min-width: 0;
|
|
2877
2954
|
height: 480px;
|
|
@@ -3110,17 +3187,17 @@ code.fasta {
|
|
|
3110
3187
|
background: #fafaff;
|
|
3111
3188
|
}
|
|
3112
3189
|
|
|
3113
|
-
.
|
|
3190
|
+
.oe-view {
|
|
3114
3191
|
padding: .25rem .5rem;
|
|
3115
3192
|
}
|
|
3116
3193
|
|
|
3117
|
-
.
|
|
3194
|
+
.oe-layout {
|
|
3118
3195
|
align-items: flex-start;
|
|
3119
3196
|
gap: .75rem;
|
|
3120
3197
|
display: flex;
|
|
3121
3198
|
}
|
|
3122
3199
|
|
|
3123
|
-
.
|
|
3200
|
+
.oe-layout-tree {
|
|
3124
3201
|
background: #fafbfc;
|
|
3125
3202
|
border: 1px solid #e1e4e8;
|
|
3126
3203
|
border-radius: 4px;
|
|
@@ -3131,7 +3208,7 @@ code.fasta {
|
|
|
3131
3208
|
overflow: auto;
|
|
3132
3209
|
}
|
|
3133
3210
|
|
|
3134
|
-
.
|
|
3211
|
+
.oe-splitter {
|
|
3135
3212
|
cursor: col-resize;
|
|
3136
3213
|
background: none;
|
|
3137
3214
|
border-left: 1px solid #e1e4e8;
|
|
@@ -3141,16 +3218,16 @@ code.fasta {
|
|
|
3141
3218
|
margin: 0 1px;
|
|
3142
3219
|
}
|
|
3143
3220
|
|
|
3144
|
-
.
|
|
3221
|
+
.oe-splitter:hover, .oe-splitter:active {
|
|
3145
3222
|
background: #d6e9ff;
|
|
3146
3223
|
}
|
|
3147
3224
|
|
|
3148
|
-
.
|
|
3225
|
+
.oe-layout-panel {
|
|
3149
3226
|
flex: auto;
|
|
3150
3227
|
min-width: 0;
|
|
3151
3228
|
}
|
|
3152
3229
|
|
|
3153
|
-
.
|
|
3230
|
+
.oe-tree-leaf {
|
|
3154
3231
|
cursor: pointer;
|
|
3155
3232
|
border-radius: 2px;
|
|
3156
3233
|
align-items: center;
|
|
@@ -3159,38 +3236,38 @@ code.fasta {
|
|
|
3159
3236
|
display: flex;
|
|
3160
3237
|
}
|
|
3161
3238
|
|
|
3162
|
-
.
|
|
3239
|
+
.oe-tree-leaf:hover {
|
|
3163
3240
|
background: #eef5ff;
|
|
3164
3241
|
}
|
|
3165
3242
|
|
|
3166
|
-
.
|
|
3243
|
+
.oe-tree-leaf-active {
|
|
3167
3244
|
font-weight: 600;
|
|
3168
3245
|
background: #d6e9ff !important;
|
|
3169
3246
|
}
|
|
3170
3247
|
|
|
3171
|
-
.
|
|
3248
|
+
.oe-tree-leaf-name {
|
|
3172
3249
|
white-space: nowrap;
|
|
3173
3250
|
text-overflow: ellipsis;
|
|
3174
3251
|
flex: auto;
|
|
3175
3252
|
overflow: hidden;
|
|
3176
3253
|
}
|
|
3177
3254
|
|
|
3178
|
-
.
|
|
3255
|
+
.oe-tree-leaf-count {
|
|
3179
3256
|
color: #555;
|
|
3180
3257
|
font-variant-numeric: tabular-nums;
|
|
3181
3258
|
font-size: 12px;
|
|
3182
3259
|
}
|
|
3183
3260
|
|
|
3184
|
-
.
|
|
3261
|
+
.oe-loading {
|
|
3185
3262
|
padding: 1rem;
|
|
3186
3263
|
}
|
|
3187
3264
|
|
|
3188
|
-
.
|
|
3265
|
+
.oe-summary {
|
|
3189
3266
|
margin: .25rem 0 .5rem;
|
|
3190
3267
|
font-size: .9rem;
|
|
3191
3268
|
}
|
|
3192
3269
|
|
|
3193
|
-
.
|
|
3270
|
+
.oe-controls {
|
|
3194
3271
|
background-color: #f6f8fa;
|
|
3195
3272
|
border: 1px solid #e1e4e8;
|
|
3196
3273
|
border-radius: 4px;
|
|
@@ -3202,85 +3279,106 @@ code.fasta {
|
|
|
3202
3279
|
display: flex;
|
|
3203
3280
|
}
|
|
3204
3281
|
|
|
3205
|
-
.
|
|
3282
|
+
.oe-control {
|
|
3206
3283
|
min-width: 100px;
|
|
3207
3284
|
}
|
|
3208
3285
|
|
|
3209
|
-
.
|
|
3286
|
+
.oe-control-grow {
|
|
3210
3287
|
flex-grow: 1;
|
|
3211
3288
|
min-width: 200px;
|
|
3212
3289
|
}
|
|
3213
3290
|
|
|
3214
|
-
.
|
|
3291
|
+
.oe-control .form-label {
|
|
3215
3292
|
margin-bottom: .15rem;
|
|
3216
3293
|
font-size: .8rem;
|
|
3217
3294
|
}
|
|
3218
3295
|
|
|
3219
|
-
.
|
|
3296
|
+
.oe-help {
|
|
3297
|
+
color: #6c757d;
|
|
3298
|
+
cursor: help;
|
|
3299
|
+
vertical-align: middle;
|
|
3300
|
+
align-items: center;
|
|
3301
|
+
margin-left: 3px;
|
|
3302
|
+
font-size: .85em;
|
|
3303
|
+
display: inline-flex;
|
|
3304
|
+
}
|
|
3305
|
+
|
|
3306
|
+
.oe-help:hover, .oe-help:focus {
|
|
3307
|
+
color: #0366d6;
|
|
3308
|
+
outline: none;
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3311
|
+
.oe-switch {
|
|
3312
|
+
align-items: center;
|
|
3313
|
+
gap: 4px;
|
|
3314
|
+
display: flex;
|
|
3315
|
+
}
|
|
3316
|
+
|
|
3317
|
+
.oe-ont-title {
|
|
3220
3318
|
margin-right: .5rem;
|
|
3221
3319
|
font-weight: 600;
|
|
3222
3320
|
}
|
|
3223
3321
|
|
|
3224
|
-
.
|
|
3322
|
+
.oe-ont-badge {
|
|
3225
3323
|
font-weight: normal;
|
|
3226
3324
|
}
|
|
3227
3325
|
|
|
3228
|
-
.
|
|
3326
|
+
.oe-table {
|
|
3229
3327
|
border-collapse: collapse;
|
|
3230
3328
|
width: 100%;
|
|
3231
3329
|
font-size: .85rem;
|
|
3232
3330
|
}
|
|
3233
3331
|
|
|
3234
|
-
.
|
|
3332
|
+
.oe-table th, .oe-table td {
|
|
3235
3333
|
text-align: left;
|
|
3236
3334
|
border-bottom: 1px solid #eee;
|
|
3237
3335
|
padding: .25rem .5rem;
|
|
3238
3336
|
}
|
|
3239
3337
|
|
|
3240
|
-
.
|
|
3338
|
+
.oe-table th {
|
|
3241
3339
|
background: #f0f3f6;
|
|
3242
3340
|
position: sticky;
|
|
3243
3341
|
top: 0;
|
|
3244
3342
|
}
|
|
3245
3343
|
|
|
3246
|
-
.
|
|
3344
|
+
.oe-sort-th {
|
|
3247
3345
|
cursor: pointer;
|
|
3248
3346
|
user-select: none;
|
|
3249
3347
|
white-space: nowrap;
|
|
3250
3348
|
}
|
|
3251
3349
|
|
|
3252
|
-
.
|
|
3350
|
+
.oe-sort-th:hover {
|
|
3253
3351
|
background: #dde3ea;
|
|
3254
3352
|
}
|
|
3255
3353
|
|
|
3256
|
-
.
|
|
3354
|
+
.oe-sort-th-active {
|
|
3257
3355
|
color: #036;
|
|
3258
3356
|
background: #dde3ea;
|
|
3259
3357
|
}
|
|
3260
3358
|
|
|
3261
|
-
.
|
|
3359
|
+
.oe-table tbody tr {
|
|
3262
3360
|
cursor: pointer;
|
|
3263
3361
|
}
|
|
3264
3362
|
|
|
3265
|
-
.
|
|
3363
|
+
.oe-table tbody tr:hover {
|
|
3266
3364
|
background-color: #eef5ff;
|
|
3267
3365
|
}
|
|
3268
3366
|
|
|
3269
|
-
.
|
|
3367
|
+
.oe-num {
|
|
3270
3368
|
font-variant-numeric: tabular-nums;
|
|
3271
3369
|
text-align: right !important;
|
|
3272
3370
|
}
|
|
3273
3371
|
|
|
3274
|
-
.
|
|
3372
|
+
.oe-term-id {
|
|
3275
3373
|
white-space: nowrap;
|
|
3276
3374
|
font-family: monospace;
|
|
3277
3375
|
}
|
|
3278
3376
|
|
|
3279
|
-
.
|
|
3377
|
+
.oe-term-name {
|
|
3280
3378
|
max-width: 32rem;
|
|
3281
3379
|
}
|
|
3282
3380
|
|
|
3283
|
-
.
|
|
3381
|
+
.oe-term-type {
|
|
3284
3382
|
white-space: nowrap;
|
|
3285
3383
|
color: #555;
|
|
3286
3384
|
font-size: .8rem;
|