Read and Write VCF, Plink, and BGEN with Spark¶
Glow makes it possible to read and write variant data at scale using Spark SQL.
Tip
This topic uses the terms “variant” or “variant data” to refer to single nucleotide variants and short indels.
VCF¶
You can use Spark to read VCF files just like any other file format that Spark supports through the DataFrame API using Python, R, Scala, or SQL.
df = spark.read.format("vcf").load(path)
The returned DataFrame has a schema that mirrors a single row of a VCF. Information that applies to an entire variant (SNV or indel), such as the contig name, start and end positions, and INFO attributes, is contained in columns of the DataFrame. The genotypes, which correspond to the GT FORMAT fields in a VCF, are contained in an array with one entry per sample. Each entry is a struct with fields that are described in the VCF header.
The path that you provide can be the location of a single file, a directory that contains VCF files, or a Hadoop glob pattern that identifies a group of files. Sample IDs are not included by default. See the parameters table below for instructions on how to include them.
You can control the behavior of the VCF reader with a few parameters. All parameters are case insensitive.
Parameter |
Type |
Default |
Description |
---|---|---|---|
|
boolean |
|
If true, each genotype includes the name of the sample ID it belongs to. Sample names increases the size of each row, both in memory and on storage. |
|
boolean |
|
If true, each info field in the input VCF will be converted into a column in the output DataFrame with each column typed as specified in the VCF header. If false, all info fields will be contained in a single column with a string -> string map of info keys to values. |
|
string |
|
Controls the behavior when parsing a malformed row. If |
Note
Starting from Glow 0.4.0, the splitToBiallelic
option for the VCF reader no longer exists. To split multiallelic variants to biallelics use the split_multiallelics transformer after loading the VCF.
Important
The VCF reader uses the 0-start, half-open (zero-based) coordinate system. This means
that the start
values in the DataFrame will be 1 lower than the values that appear in the VCF
file. For instance, if a variant has a POS value of 10 in a VCF file, the start
column in the
DataFrame will contain the value 9. When writing to a VCF file, Glow converts positions back to a
1-based coordinate system as required by the VCF specification.
You can save a DataFrame as a VCF file, which you can then read with other tools. To write a DataFrame as a single VCF file specify the format "bigvcf"
:
df.write.format("bigvcf").save(path)
The file extension of the output path determines which, if any, compression codec should be used.
For instance, writing to a path such as /genomics/my_vcf.vcf.bgz
will cause the output file to be
block gzipped.
If you’d rather save a sharded VCF where each partition saves to a separate file:
df.write.format("vcf").save(path)
To control the behavior of the sharded VCF writer, you can provide the following option:
Parameter |
Type |
Default |
Description |
---|---|---|---|
|
string |
n/a |
A compression codec to use for the output VCF file. The value can be the full name of a compression codec class
(for example |
For both the single and sharded VCF writer, you can use the following options:
Parameter |
Type |
Default |
Description |
---|---|---|---|
|
string |
|
If |
|
string |
|
Controls the behavior when parsing a malformed row. If |
If the header is inferred from the DataFrame, the sample IDs are derived from the rows. If the sample IDs are missing,
they will be represented as sample_n
, for which n
reflects the index of the sample in a row. In this case,
there must be the same number of samples in each row.
For the big VCF writer, the inferred sample IDs are the distinct set of all sample IDs from the DataFrame.
For the sharded VCF writer, the sample IDs are inferred from the first row of each partition and must be the same for each row. If the rows do not contain the same samples, provide a complete header of a filesystem path to a VCF file.
BGEN¶
Glow provides the ability to read BGEN files, including those distributed by the UK Biobank project.
df = spark.read.format("bgen").load(path)
As with the VCF reader, the provided path can be a file, directory, or glob pattern. If .bgi
index files are located in the same directory as the data files, the reader uses the indexes to
more efficiently traverse the data files. Data files can be processed even if indexes do not exist.
The schema of the resulting DataFrame matches that of the VCF reader.
Parameter |
Type |
Default |
Description |
---|---|---|---|
|
boolean |
|
If true, use |
|
string |
n/a |
Path to a |
|
string |
|
Name of the column in the |
You can use the DataFrameWriter
API to save a single BGEN file, which you can then read with other tools.
df.write.format("bigbgen").save(path)
If the genotype arrays are missing ploidy and/or phasing information, the BGEN writer infers the values using the
provided values for ploidy, phasing, or posteriorProbabilities
in the genotype arrays. You can provide the value for ploidy
using an integer value ploidy
or it can be inferred using the length of an array calls
, and you can provide the phasing information
using a boolean value phased
.
To control the behavior of the BGEN writer, you can provide the following options:
Parameter |
Type |
Default |
Description |
---|---|---|---|
|
integer |
|
Number of bits used to represent each probability value. Must be 8, 16, or 32. |
|
integer |
|
The maximum ploidy that will be inferred for unphased data if ploidy is missing. |
|
integer |
|
The inferred ploidy if phasing and ploidy are missing, or ploidy is missing and cannot be inferred from |
|
boolean |
|
The inferred phasing if phasing is missing and cannot be inferred from |
PLINK¶
Glow provides the ability to read binary PLINK binary PED (BED) files with accompanying BIM and FAM files. The provided path can be a file or glob pattern.
df = spark.read.format("plink").load("{prefix}.bed".format(prefix=prefix))
The schema of the resulting DataFrame matches that of the VCF reader. The accompanying variant and sample information
files must be located at {prefix}.bim
and {prefix}.fam
.
Parameter |
Type |
Default |
Description |
---|---|---|---|
|
boolean |
|
If true, each genotype includes the name of the sample ID it belongs to. |
|
string |
(tab) |
Whitespace delimiter in the |
|
string |
(space) |
Whitespace delimiter in the |
|
boolean |
|
If true, sets the sample ID to the family ID and individual ID merged with an underscore delimiter. If false, sets the sample ID to the individual ID. |