Skip to content

Variants

gentropy.datasource.gnomad.variants.GnomADVariantFrequencies

Extract GnomAD variants including allele frequencies.

Source code in src/gentropy/datasource/gnomad/variants.py
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
class GnomADVariantFrequencies:
    """Extract GnomAD variants including allele frequencies."""

    def __init__(
        self: GnomADVariantFrequencies,
        gnomad_joint_path: str = GnomadVariantConfig().gnomad_joint_path,
        gnomad_variant_populations: list[
            VariantPopulation | str
        ] = GnomadVariantConfig().gnomad_variant_populations,
        hash_threshold: int = VariantIndexConfig().hash_threshold,
    ):
        """Initialize.

        Args:
            gnomad_joint_path (str): Path to gnomAD "joint" hail table.
            gnomad_variant_populations (list[VariantPopulation | str]): List of populations to include.
            hash_threshold (int): longer variant ids will be hashed.

        All defaults are stored in GnomadVariantConfig.
        """
        self.gnomad_joint_path = gnomad_joint_path
        self.gnomad_variant_populations = gnomad_variant_populations
        self.lenght_threshold = hash_threshold

    def as_variant_index(self: GnomADVariantFrequencies) -> VariantIndex:
        """Generate variant annotation dataset from gnomAD.

        Some relevant modifications to the original dataset are:

        1. The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
        2. Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
        3. Field names are converted to camel case to follow the convention.

        Returns:
            VariantIndex: GnomaAD variants dataset.
        """
        # Load variants dataset
        ht = hl.read_table(
            self.gnomad_joint_path,
            _load_refs=False,
        )

        # Drop non biallelic variants
        ht = ht.filter(ht.alleles.length() == 2)

        # Select relevant fields and nested records to create class
        return VariantIndex(
            _df=(
                ht.select(
                    # Extract mandatory fields:
                    variantId=hl.str("_").join(
                        [
                            ht.locus.contig.replace("chr", ""),
                            hl.str(ht.locus.position),
                            ht.alleles[0],
                            ht.alleles[1],
                        ]
                    ),
                    chromosome=ht.locus.contig.replace("chr", ""),
                    position=ht.locus.position,
                    referenceAllele=ht.alleles[0],
                    alternateAllele=ht.alleles[1],
                    # Extract allele frequencies from populations of interest:
                    alleleFrequencies=hl.set(
                        [f"{pop}_adj" for pop in self.gnomad_variant_populations]
                    ).map(
                        lambda p: hl.struct(
                            populationName=p,
                            alleleFrequency=ht.joint.freq[
                                ht.joint_globals.freq_index_dict[p]
                            ].AF,
                        )
                    ),
                    # Extract cross references to GnomAD:
                    dbXrefs=hl.array(
                        [
                            hl.struct(
                                id=hl.str("-").join(
                                    [
                                        ht.locus.contig.replace("chr", ""),
                                        hl.str(ht.locus.position),
                                        ht.alleles[0],
                                        ht.alleles[1],
                                    ]
                                ),
                                source=hl.str("gnomad"),
                            )
                        ]
                    ),
                )
                .key_by("chromosome", "position")
                .drop("locus", "alleles")
                .select_globals()
                .to_spark(flatten=False)
                .withColumns(
                    {
                        # Generate a variantId that is hashed for long variant ids:
                        "variantId": VariantIndex.hash_long_variant_ids(
                            f.col("variantId"),
                            f.col("chromosome"),
                            f.col("position"),
                            self.lenght_threshold,
                        ),
                        # We are not capturing the most severe consequence from GnomAD, but this column needed for the schema:
                        "mostSevereConsequenceId": f.lit(None).cast(t.StringType()),
                    }
                )
            ),
            _schema=VariantIndex.get_schema(),
        )

__init__(gnomad_joint_path: str = GnomadVariantConfig().gnomad_joint_path, gnomad_variant_populations: list[VariantPopulation | str] = GnomadVariantConfig().gnomad_variant_populations, hash_threshold: int = VariantIndexConfig().hash_threshold)

Initialize.

Parameters:

Name Type Description Default
gnomad_joint_path str

Path to gnomAD "joint" hail table.

gnomad_joint_path
gnomad_variant_populations list[VariantPopulation | str]

List of populations to include.

gnomad_variant_populations
hash_threshold int

longer variant ids will be hashed.

hash_threshold

All defaults are stored in GnomadVariantConfig.

Source code in src/gentropy/datasource/gnomad/variants.py
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
def __init__(
    self: GnomADVariantFrequencies,
    gnomad_joint_path: str = GnomadVariantConfig().gnomad_joint_path,
    gnomad_variant_populations: list[
        VariantPopulation | str
    ] = GnomadVariantConfig().gnomad_variant_populations,
    hash_threshold: int = VariantIndexConfig().hash_threshold,
):
    """Initialize.

    Args:
        gnomad_joint_path (str): Path to gnomAD "joint" hail table.
        gnomad_variant_populations (list[VariantPopulation | str]): List of populations to include.
        hash_threshold (int): longer variant ids will be hashed.

    All defaults are stored in GnomadVariantConfig.
    """
    self.gnomad_joint_path = gnomad_joint_path
    self.gnomad_variant_populations = gnomad_variant_populations
    self.lenght_threshold = hash_threshold

as_variant_index() -> VariantIndex

Generate variant annotation dataset from gnomAD.

Some relevant modifications to the original dataset are:

  1. The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
  2. Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
  3. Field names are converted to camel case to follow the convention.

Returns:

Name Type Description
VariantIndex VariantIndex

GnomaAD variants dataset.

Source code in src/gentropy/datasource/gnomad/variants.py
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
def as_variant_index(self: GnomADVariantFrequencies) -> VariantIndex:
    """Generate variant annotation dataset from gnomAD.

    Some relevant modifications to the original dataset are:

    1. The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
    2. Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
    3. Field names are converted to camel case to follow the convention.

    Returns:
        VariantIndex: GnomaAD variants dataset.
    """
    # Load variants dataset
    ht = hl.read_table(
        self.gnomad_joint_path,
        _load_refs=False,
    )

    # Drop non biallelic variants
    ht = ht.filter(ht.alleles.length() == 2)

    # Select relevant fields and nested records to create class
    return VariantIndex(
        _df=(
            ht.select(
                # Extract mandatory fields:
                variantId=hl.str("_").join(
                    [
                        ht.locus.contig.replace("chr", ""),
                        hl.str(ht.locus.position),
                        ht.alleles[0],
                        ht.alleles[1],
                    ]
                ),
                chromosome=ht.locus.contig.replace("chr", ""),
                position=ht.locus.position,
                referenceAllele=ht.alleles[0],
                alternateAllele=ht.alleles[1],
                # Extract allele frequencies from populations of interest:
                alleleFrequencies=hl.set(
                    [f"{pop}_adj" for pop in self.gnomad_variant_populations]
                ).map(
                    lambda p: hl.struct(
                        populationName=p,
                        alleleFrequency=ht.joint.freq[
                            ht.joint_globals.freq_index_dict[p]
                        ].AF,
                    )
                ),
                # Extract cross references to GnomAD:
                dbXrefs=hl.array(
                    [
                        hl.struct(
                            id=hl.str("-").join(
                                [
                                    ht.locus.contig.replace("chr", ""),
                                    hl.str(ht.locus.position),
                                    ht.alleles[0],
                                    ht.alleles[1],
                                ]
                            ),
                            source=hl.str("gnomad"),
                        )
                    ]
                ),
            )
            .key_by("chromosome", "position")
            .drop("locus", "alleles")
            .select_globals()
            .to_spark(flatten=False)
            .withColumns(
                {
                    # Generate a variantId that is hashed for long variant ids:
                    "variantId": VariantIndex.hash_long_variant_ids(
                        f.col("variantId"),
                        f.col("chromosome"),
                        f.col("position"),
                        self.lenght_threshold,
                    ),
                    # We are not capturing the most severe consequence from GnomAD, but this column needed for the schema:
                    "mostSevereConsequenceId": f.lit(None).cast(t.StringType()),
                }
            )
        ),
        _schema=VariantIndex.get_schema(),
    )

gentropy.datasource.gnomad.variants.GnomADVariantRsIds

Extract GnomAD variants including variant Rs identifiers.

Source code in src/gentropy/datasource/gnomad/variants.py
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
class GnomADVariantRsIds:
    """Extract GnomAD variants including variant Rs identifiers."""

    def __init__(
        self: GnomADVariantRsIds,
        gnomad_genomes_path: str = GnomadVariantConfig().gnomad_genomes_path,
        hash_threshold: int = VariantIndexConfig().hash_threshold,
    ):
        """Initialize.

        Args:
            gnomad_genomes_path (str): Path to gnomAD genomes hail table.
            hash_threshold (int): longer variant ids will be hashed.

        All defaults are stored in GnomadVariantConfig.
        """
        self.gnomad_genomes_path = gnomad_genomes_path
        self.lenght_threshold = hash_threshold

    def as_variant_index(self: GnomADVariantRsIds) -> VariantIndex:
        """Generate variant annotation dataset from gnomAD.

        Some relevant modifications to the original dataset are:

        1. The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
        2. Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
        3. Field names are converted to camel case to follow the convention.

        Returns:
            VariantIndex: GnomaAD variants dataset.
        """
        # Load variants dataset
        ht = hl.read_table(
            self.gnomad_genomes_path,
            _load_refs=False,
        )

        # Drop non biallelic variants
        ht = ht.filter(ht.alleles.length() == 2)

        # Select relevant fields and nested records to create class
        return VariantIndex(
            _df=(
                ht.select(
                    # Extract mandatory fields:
                    variantId=hl.str("_").join(
                        [
                            ht.locus.contig.replace("chr", ""),
                            hl.str(ht.locus.position),
                            ht.alleles[0],
                            ht.alleles[1],
                        ]
                    ),
                    chromosome=ht.locus.contig.replace("chr", ""),
                    position=ht.locus.position,
                    referenceAllele=ht.alleles[0],
                    alternateAllele=ht.alleles[1],
                    # Extract rsIds:
                    rsIds=ht.rsid,
                    # Extract cross references to GnomAD:
                    dbXrefs=hl.array(
                        [
                            hl.struct(
                                id=hl.str("-").join(
                                    [
                                        ht.locus.contig.replace("chr", ""),
                                        hl.str(ht.locus.position),
                                        ht.alleles[0],
                                        ht.alleles[1],
                                    ]
                                ),
                                source=hl.str("gnomad"),
                            )
                        ]
                    ),
                )
                .key_by("chromosome", "position")
                .drop("locus", "alleles")
                .select_globals()
                .to_spark(flatten=False)
                .withColumns(
                    {
                        # Generate a variantId that is hashed for long variant ids:
                        "variantId": VariantIndex.hash_long_variant_ids(
                            f.col("variantId"),
                            f.col("chromosome"),
                            f.col("position"),
                            self.lenght_threshold,
                        ),
                        # We are not capturing the most severe consequence from GnomAD, but this column needed for the schema:
                        "mostSevereConsequenceId": f.lit(None).cast(t.StringType()),
                    }
                )
            ),
            _schema=VariantIndex.get_schema(),
        )

__init__(gnomad_genomes_path: str = GnomadVariantConfig().gnomad_genomes_path, hash_threshold: int = VariantIndexConfig().hash_threshold)

Initialize.

Parameters:

Name Type Description Default
gnomad_genomes_path str

Path to gnomAD genomes hail table.

gnomad_genomes_path
hash_threshold int

longer variant ids will be hashed.

hash_threshold

All defaults are stored in GnomadVariantConfig.

Source code in src/gentropy/datasource/gnomad/variants.py
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
def __init__(
    self: GnomADVariantRsIds,
    gnomad_genomes_path: str = GnomadVariantConfig().gnomad_genomes_path,
    hash_threshold: int = VariantIndexConfig().hash_threshold,
):
    """Initialize.

    Args:
        gnomad_genomes_path (str): Path to gnomAD genomes hail table.
        hash_threshold (int): longer variant ids will be hashed.

    All defaults are stored in GnomadVariantConfig.
    """
    self.gnomad_genomes_path = gnomad_genomes_path
    self.lenght_threshold = hash_threshold

as_variant_index() -> VariantIndex

Generate variant annotation dataset from gnomAD.

Some relevant modifications to the original dataset are:

  1. The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
  2. Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
  3. Field names are converted to camel case to follow the convention.

Returns:

Name Type Description
VariantIndex VariantIndex

GnomaAD variants dataset.

Source code in src/gentropy/datasource/gnomad/variants.py
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
def as_variant_index(self: GnomADVariantRsIds) -> VariantIndex:
    """Generate variant annotation dataset from gnomAD.

    Some relevant modifications to the original dataset are:

    1. The transcript consequences features provided by VEP are filtered to only refer to the Ensembl canonical transcript.
    2. Genome coordinates are liftovered from GRCh38 to GRCh37 to keep as annotation.
    3. Field names are converted to camel case to follow the convention.

    Returns:
        VariantIndex: GnomaAD variants dataset.
    """
    # Load variants dataset
    ht = hl.read_table(
        self.gnomad_genomes_path,
        _load_refs=False,
    )

    # Drop non biallelic variants
    ht = ht.filter(ht.alleles.length() == 2)

    # Select relevant fields and nested records to create class
    return VariantIndex(
        _df=(
            ht.select(
                # Extract mandatory fields:
                variantId=hl.str("_").join(
                    [
                        ht.locus.contig.replace("chr", ""),
                        hl.str(ht.locus.position),
                        ht.alleles[0],
                        ht.alleles[1],
                    ]
                ),
                chromosome=ht.locus.contig.replace("chr", ""),
                position=ht.locus.position,
                referenceAllele=ht.alleles[0],
                alternateAllele=ht.alleles[1],
                # Extract rsIds:
                rsIds=ht.rsid,
                # Extract cross references to GnomAD:
                dbXrefs=hl.array(
                    [
                        hl.struct(
                            id=hl.str("-").join(
                                [
                                    ht.locus.contig.replace("chr", ""),
                                    hl.str(ht.locus.position),
                                    ht.alleles[0],
                                    ht.alleles[1],
                                ]
                            ),
                            source=hl.str("gnomad"),
                        )
                    ]
                ),
            )
            .key_by("chromosome", "position")
            .drop("locus", "alleles")
            .select_globals()
            .to_spark(flatten=False)
            .withColumns(
                {
                    # Generate a variantId that is hashed for long variant ids:
                    "variantId": VariantIndex.hash_long_variant_ids(
                        f.col("variantId"),
                        f.col("chromosome"),
                        f.col("position"),
                        self.lenght_threshold,
                    ),
                    # We are not capturing the most severe consequence from GnomAD, but this column needed for the schema:
                    "mostSevereConsequenceId": f.lit(None).cast(t.StringType()),
                }
            )
        ),
        _schema=VariantIndex.get_schema(),
    )