Skip to content

Commit

Permalink
Adding module docstring as README
Browse files Browse the repository at this point in the history
  • Loading branch information
jdoughertyii committed Jul 23, 2011
1 parent 93d6cd4 commit eb9c321
Showing 1 changed file with 88 additions and 0 deletions.
88 changes: 88 additions & 0 deletions README
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,88 @@
A VCFv4.0 parser for Python.

The intent of this module is to mimic the ``csv`` module in the Python stdlib,
as opposed to more flexible serialization formats like JSON or YAML. ``vcf``
will attempt to parse the content of each record based on the data types
specified in the meta-information lines -- specifically the ##INFO and
##FORMAT lines. If these lines are missing or incomplete, it will check
against the reserved types mentioned in the spec. Failing that, it will just
return strings.

There is currently one piece of interface: ``VCFReader``. It takes a file-like
object and acts as a reader::

>>> import vcf
>>> vcf_reader = vcf.VCFReader(open('example.vcf', 'rb'))
>>> for record in vcf_reader:
... print record
Record(CHROM='20', POS=14370, ID='rs6054257', REF='G', ALT=['A'], QUAL=29,
FILTER='PASS', INFO={'H2': True, 'NS': 3, 'DB': True, 'DP': 14, 'AF': [0.5]
}, FORMAT='GT:GQ:DP:HQ', samples=[{'GT': '0', 'HQ': [58, 50], 'DP': 3, 'GQ'
: 49, 'name': 'NA00001'}, {'GT': '0', 'HQ': [65, 3], 'DP': 5, 'GQ': 3, 'nam
e' : 'NA00002'}, {'GT': '0', 'DP': 3, 'GQ': 41, 'name': 'NA00003'}])

This produces a great deal of information, but it is conveniently accessed.
The attributes of a Record are the 8 fixed fields from the VCF spec plus two
more. That is:

* ``Record.CHROM``
* ``Record.POS``
* ``Record.ID``
* ``Record.REF``
* ``Record.ALT``
* ``Record.QUAL``
* ``Record.FILTER``
* ``Record.INFO``

plus two more attributes to handle genotype information:

* ``Record.FORMAT``
* ``Record.samples``

``samples``, not being the title of any column, is left lowercase. The format
of the fixed fields is from the spec. Comma-separated lists in the VCF are
converted to lists. In particular, one-entry VCF lists are converted to
one-entry Python lists (see, e.g., ``Record.ALT``). Semicolon-delimited lists
of key=value pairs are converted to Python dictionaries, with flags being given
a ``True`` value. Integers and floats are handled exactly as you'd expect::

>>> record = vcf_reader.next()
>>> print record.POS
17330
>>> print record.ALT
['A']
>>> print record.INFO['AF']
[0.017]

``record.FORMAT`` will be a string specifying the format of the genotype
fields. In case the FORMAT column does not exist, ``record.FORMAT`` is
``None``. Finally, ``record.samples`` is a list of dictionaries containing the
parsed sample column::

>>> record = vcf_reader.next()
>>> for sample in record.samples:
... print sample['GT']
'1|2'
'2|1'
'2/2'

Metadata regarding the VCF file itself can be investigated through the
following attributes:

* ``VCFReader.metadata``
* ``VCFReader.infos``
* ``VCFReader.filters``
* ``VCFReader.formats``
* ``VCFReader.samples``

For example::

>>> vcf_reader.metadata['fileDate']
20090805
>>> vcf_reader.samples
['NA00001', 'NA00002', 'NA00003']
>>> vcf_reader.filters
{'q10': Filter(id='q10', desc='Quality below 10'),
's50': Filter(id='s50', desc='Less than 50% of samples have data')}
>>> vcf_reader.infos['AA'].desc
Ancestral Allele

0 comments on commit eb9c321

Please sign in to comment.