@@ -87,26 +87,26 @@ Run data-rank (single-sample) GSEA.
87
87
88
88
# Options
89
89
90
- - `--standard-deviation`: 0. For column-wise normalization. 0 skips normalization.
91
- - `--exponent`: 1.
90
+ - `--standard-deviation`: For column-wise normalization. 0 skips normalization.
91
+ - `--exponent`:
92
92
- `--algorithm`: "ks0" | "a0" | "da2" | "da2w" | "da2w0w".
93
- - `--minimum`: 1. The minimum set size.
94
- - `--maximum`: 1000. The maximum set size.
95
- - `--fraction`: 0. The minimum fraction of set members present.
96
- - `--number-of-plots`: 2.
97
- - `--low`: "Low".
98
- - `--high`: "High".
93
+ - `--minimum`: The minimum set size.
94
+ - `--maximum`: The maximum set size.
95
+ - `--fraction`: The minimum fraction of set members present.
96
+ - `--number-of-plots`:
97
+ - `--low`:
98
+ - `--high`:
99
99
"""
100
100
@cast function data_rank (
101
101
directory,
102
102
tsv,
103
103
json;
104
- standard_deviation:: Real = 0 ,
105
- exponent:: Real = 1 ,
104
+ standard_deviation:: Float64 = 0. 0 ,
105
+ exponent:: Float64 = 1.0 ,
106
106
algorithm = " ks0" ,
107
107
minimum:: Int = 1 ,
108
108
maximum:: Int = 1000 ,
109
- fraction:: Real = 0 ,
109
+ fraction:: Float64 = 0. 0 ,
110
110
number_of_plots:: Int = 2 ,
111
111
low = " Low" ,
112
112
high = " High" ,
@@ -172,27 +172,27 @@ Run user-rank (pre-rank) GSEA.
172
172
173
173
# Options
174
174
175
- - `--exponent`: 1.
175
+ - `--exponent`:
176
176
- `--algorithm`: "ks0" | "a0" | "da2" | "da2w" | "da2w0w".
177
- - `--minimum`: 1. The minimum set size.
178
- - `--maximum`: 1000. The maximum set size.
179
- - `--fraction`: 0. The minimum fraction of set members present.
180
- - `--number-of-permutations`: 100.
181
- - `--seed`: 20150603.
182
- - `--number-of-plots`: 2.
183
- - `--more-plots`: "". ;-separated set names.
184
- - `--low`: "Low".
185
- - `--high`: "High".
177
+ - `--minimum`: The minimum set size.
178
+ - `--maximum`: The maximum set size.
179
+ - `--fraction`: The minimum fraction of set members present.
180
+ - `--number-of-permutations`:
181
+ - `--seed`:
182
+ - `--number-of-plots`:
183
+ - `--more-plots`: ;-separated set names.
184
+ - `--low`:
185
+ - `--high`:
186
186
"""
187
187
@cast function user_rank (
188
188
directory,
189
189
tsv,
190
190
json;
191
- exponent:: Real = 1 ,
191
+ exponent:: Float64 = 1.0 ,
192
192
algorithm = " ks0" ,
193
193
minimum:: Int = 1 ,
194
194
maximum:: Int = 1000 ,
195
- fraction:: Real = 0 ,
195
+ fraction:: Float64 = 0. 0 ,
196
196
number_of_permutations:: Int = 100 ,
197
197
seed:: Int = 20150603 ,
198
198
number_of_plots:: Int = 2 ,
@@ -240,33 +240,33 @@ Run metric-rank (standard) GSEA.
240
240
241
241
# Options
242
242
243
- - `--standard-deviation`: 0. For column-wise normalization. 0 skips normalization.
243
+ - `--standard-deviation`: For column-wise normalization. 0 skips normalization.
244
244
- `--metric`: "signal-to-noise-ratio" | "mean-difference" | "log-ratio".
245
- - `--exponent`: 1.
245
+ - `--exponent`:
246
246
- `--algorithm`: "ks0" | "a0" | "da2" | "da2w" | "da2w0w".
247
- - `--minimum`: 1. The minimum set size.
248
- - `--maximum`: 1000. The maximum set size.
249
- - `--fraction`: 0. The minimum fraction of set members present.
247
+ - `--minimum`: The minimum set size.
248
+ - `--maximum`: The maximum set size.
249
+ - `--fraction`: The minimum fraction of set members present.
250
250
- `--permutation`: "sample" | "set".
251
- - `--number-of-permutations`: 100.
252
- - `--seed`: 20150603.
253
- - `--number-of-plots`: 2.
254
- - `--more-plots`: "". ;-separated set names.
255
- - `--low`: "Low".
256
- - `--high`: "High".
251
+ - `--number-of-permutations`:
252
+ - `--seed`:
253
+ - `--number-of-plots`:
254
+ - `--more-plots`: ;-separated set names.
255
+ - `--low`:
256
+ - `--high`:
257
257
"""
258
258
@cast function metric_rank (
259
259
directory,
260
260
tsv1,
261
261
tsv2,
262
262
json;
263
- standard_deviation:: Real = 0 ,
263
+ standard_deviation:: Float64 = 0. 0 ,
264
264
metric = " signal-to-noise-ratio" ,
265
- exponent:: Real = 1 ,
265
+ exponent:: Float64 = 1.0 ,
266
266
algorithm = " ks0" ,
267
267
minimum:: Int = 1 ,
268
268
maximum:: Int = 1000 ,
269
- fraction:: Real = 0 ,
269
+ fraction:: Float64 = 0. 0 ,
270
270
permutation = " sample" ,
271
271
number_of_permutations:: Int = 100 ,
272
272
seed:: Int = 20150603 ,
0 commit comments