You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
&& sh -c 'cat intel_key.PUB | gpg --dearmor | tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null' \
41
+
&& sh -c 'echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | tee /etc/apt/sources.list.d/oneAPI.list' \
Copy file name to clipboardExpand all lines: docs/docs/documentation.md
+23-4Lines changed: 23 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ remeta gene \
65
65
--condition-htp HTP1 HTP2 ...
66
66
```
67
67
68
-
**Running without LD matrices**
68
+
**Running without LD matrices (not recommended)**
69
69
70
70
`remeta gene` can be run without the required LD matrices by specifying the `--ignore-mask-ld` and `--keep-variants-not-in-ld-mat` flags.
71
71
Note that it is not possible to perform conditional analysis without LD matrices.
@@ -92,6 +92,16 @@ Alternatively **remeta** can use a maximum allele frequency observed across coho
92
92
Lastly, **remeta** allele frequencies can be specifed in an allele frequency file using the `--aaf-file` argument.
93
93
See [File Formats](file_formats.md) for a list of available formats.
94
94
95
+
**Unbalanced binary traits**
96
+
97
+
**remeta** uses two strategies to control type 1 error for unbalanced binary traits:
98
+
a saddlepoint approximation (SPA) applied per mask and an SPA applied per variant.
99
+
The default parameters apply a mask level or variant level SPA when the case-control ratio of the trait falls below a certain threshold.
100
+
Simulations suggest that the threshold on case control apply an SPA depends on the test (e.g. burden vs. SKATO),
101
+
so parameters can be adjusted per test using several command line parameters.
102
+
Mask level parameters are available for burden tests and SKATO, and adjusted using the `--<burden,skato>-mask-spa-<pval,ccr>` arguments.
103
+
Variant level parameters are avaiable for burden test, SKATO, and ACATV, and adjusting using the `--<burden,skato,acatv>-sv-spa-<pval,ccr>` arguments.
104
+
95
105
### Options
96
106
97
107
| Option | Argument | Type | Description |
@@ -105,25 +115,33 @@ See [File Formats](file_formats.md) for a list of available formats.
105
115
|`--trait-name`| STRING | Required | Name of trait. |
106
116
|`--trait-type`| STRING | Required | One of BT or QT. |
107
117
|`--out`| STRING | Required | Prefix for output files. |
108
-
|`--burdern-aaf-bins` (=0.0001 0.001 0.005 0.01) | FLOAT1 FLOAT2 ... | Optional | Allele frequency cutoffs for building masks for burden testing. |
118
+
|`--burden-aaf-bins` (=0.0001 0.001 0.005 0.01) | FLOAT1 FLOAT2 ... | Optional | Allele frequency cutoffs for building masks for burden testing. |
109
119
|`--burden-singleton-def` (=within) | STRING | Optional | Define singletons for the singleton mask within cohorts or across cohorts. One of 'within', 'across' or 'omit'. |
110
120
|`--burden-weight-strategy (=uniform)`| STRING | Optional | Strategy to compute variant weights for burden testing. One of `beta` or `uniform`. |
121
+
|`--burden-mask-spa-pval (=0.05)`| FLOAT | Optional | Apply a mask level SPA to burden tests when p-value < spa pval (BTs only). |
0 commit comments