types
gentropy.common.types
¶
Types and type aliases used in the package.
GWASEffect
¶
Bases: NamedTuple
Components of GWAS effect.
Attributes:
Name | Type | Description |
---|---|---|
beta |
Column
|
Effect. |
standard_error |
Column
|
Effect standard error. |
Source code in src/gentropy/common/types.py
35 36 37 38 39 40 41 42 43 44 |
|
PValComponents
¶
Bases: NamedTuple
Components of p-value.
Attributes:
Name | Type | Description |
---|---|---|
mantissa |
Column
|
Mantissa of the p-value. |
exponent |
Column
|
Exponent of the p-value. |
Source code in src/gentropy/common/types.py
23 24 25 26 27 28 29 30 31 32 |
|
gentropy.common.types.LD_Population = Literal['afr', 'amr', 'asj', 'eas', 'est', 'fin', 'nfe', 'nwe', 'seu']
module-attribute
¶
gentropy.common.types.VariantPopulation = Literal['afr', 'amr', 'ami', 'asj', 'eas', 'fin', 'nfe', 'mid', 'sas', 'remaining']
module-attribute
¶
gentropy.common.types.DataSourceType = Literal['gnomad', 'finngen', 'gwas_catalog', 'eqtl_catalog', 'ukbiobank', 'open_targets', 'intervals']
module-attribute
¶
gentropy.common.types.GWASEffect
¶
Bases: NamedTuple
Components of GWAS effect.
Attributes:
Name | Type | Description |
---|---|---|
beta |
Column
|
Effect. |
standard_error |
Column
|
Effect standard error. |
Source code in src/gentropy/common/types.py
35 36 37 38 39 40 41 42 43 44 |
|