gramene-search 2.0.5 → 2.0.7

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.
@@ -0,0 +1,177 @@
1
+ .gsea-view {
2
+ padding: 0.25rem 0.5rem;
3
+ }
4
+
5
+ .gsea-layout {
6
+ display: flex;
7
+ align-items: flex-start;
8
+ gap: 0.75rem;
9
+ }
10
+
11
+ .gsea-layout-tree {
12
+ max-height: 80vh;
13
+ overflow: auto;
14
+ border: 1px solid #e1e4e8;
15
+ border-radius: 4px;
16
+ padding: 0.25rem 0.5rem;
17
+ background: #fafbfc;
18
+ font-size: 13px;
19
+ min-width: 0;
20
+ }
21
+
22
+ .gsea-splitter {
23
+ flex: 0 0 6px;
24
+ cursor: col-resize;
25
+ background: transparent;
26
+ border-left: 1px solid #e1e4e8;
27
+ border-right: 1px solid #e1e4e8;
28
+ margin: 0 1px;
29
+ align-self: stretch;
30
+ }
31
+
32
+ .gsea-splitter:hover,
33
+ .gsea-splitter:active {
34
+ background: #d6e9ff;
35
+ }
36
+
37
+ .gsea-layout-panel {
38
+ flex: 1 1 auto;
39
+ min-width: 0;
40
+ }
41
+
42
+ .gsea-tree-leaf {
43
+ display: flex;
44
+ align-items: center;
45
+ gap: 4px;
46
+ padding: 2px 4px;
47
+ cursor: pointer;
48
+ border-radius: 2px;
49
+ }
50
+
51
+ .gsea-tree-leaf:hover {
52
+ background: #eef5ff;
53
+ }
54
+
55
+ .gsea-tree-leaf-active {
56
+ background: #d6e9ff !important;
57
+ font-weight: 600;
58
+ }
59
+
60
+ .gsea-tree-leaf-name {
61
+ flex: 1 1 auto;
62
+ white-space: nowrap;
63
+ overflow: hidden;
64
+ text-overflow: ellipsis;
65
+ }
66
+
67
+ .gsea-tree-leaf-count {
68
+ color: #555;
69
+ font-size: 12px;
70
+ font-variant-numeric: tabular-nums;
71
+ }
72
+
73
+ .gsea-loading {
74
+ padding: 1rem;
75
+ }
76
+
77
+ .gsea-summary {
78
+ font-size: 0.9rem;
79
+ margin: 0.25rem 0 0.5rem 0;
80
+ }
81
+
82
+ .gsea-controls {
83
+ display: flex;
84
+ flex-wrap: wrap;
85
+ gap: 0.75rem;
86
+ align-items: end;
87
+ margin-bottom: 0.5rem;
88
+ padding: 0.5rem;
89
+ background-color: #f6f8fa;
90
+ border: 1px solid #e1e4e8;
91
+ border-radius: 4px;
92
+ }
93
+
94
+ .gsea-control {
95
+ min-width: 100px;
96
+ }
97
+
98
+ .gsea-control-grow {
99
+ flex-grow: 1;
100
+ min-width: 200px;
101
+ }
102
+
103
+ .gsea-control .form-label {
104
+ font-size: 0.8rem;
105
+ margin-bottom: 0.15rem;
106
+ }
107
+
108
+ .gsea-ont-title {
109
+ font-weight: 600;
110
+ margin-right: 0.5rem;
111
+ }
112
+
113
+ .gsea-ont-badge {
114
+ font-weight: normal;
115
+ }
116
+
117
+ .gsea-table {
118
+ width: 100%;
119
+ border-collapse: collapse;
120
+ font-size: 0.85rem;
121
+ }
122
+
123
+ .gsea-table th,
124
+ .gsea-table td {
125
+ padding: 0.25rem 0.5rem;
126
+ border-bottom: 1px solid #eee;
127
+ text-align: left;
128
+ }
129
+
130
+ .gsea-table th {
131
+ background: #f0f3f6;
132
+ position: sticky;
133
+ top: 0;
134
+ }
135
+
136
+ .gsea-sort-th {
137
+ cursor: pointer;
138
+ user-select: none;
139
+ white-space: nowrap;
140
+ }
141
+
142
+ .gsea-sort-th:hover {
143
+ background: #dde3ea;
144
+ }
145
+
146
+ .gsea-sort-th-active {
147
+ background: #dde3ea;
148
+ color: #003366;
149
+ }
150
+
151
+ .gsea-table tbody tr {
152
+ cursor: pointer;
153
+ }
154
+
155
+ .gsea-table tbody tr:hover {
156
+ background-color: #eef5ff;
157
+ }
158
+
159
+ .gsea-num {
160
+ text-align: right !important;
161
+ font-variant-numeric: tabular-nums;
162
+ }
163
+
164
+ .gsea-term-id {
165
+ font-family: monospace;
166
+ white-space: nowrap;
167
+ }
168
+
169
+ .gsea-term-name {
170
+ max-width: 32rem;
171
+ }
172
+
173
+ .gsea-term-type {
174
+ white-space: nowrap;
175
+ color: #555;
176
+ font-size: 0.8rem;
177
+ }
@@ -53,7 +53,7 @@
53
53
  },
54
54
  {
55
55
  "id": "diffexpr",
56
- "match": "^(E[-_][A-Za-z0-9_-]+?)_g(\\d+)_g(\\d+)_(pval|logfc|l2fc)_attr_([a-z])$",
56
+ "match": "^(E[-_][A-Za-z0-9_-]+?)_g(\\d+)_g(\\d+)_(pval|l2fc)_attr_([a-z])$",
57
57
  "group": "differential",
58
58
  "diffExpression": true,
59
59
  "labelTemplate": "$1 · g$2 vs g$3 · $4"