Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 301 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 301 Bytes

vcfExporter

Convert Progenetix data to VCF

Usage

Prepare the data in a JSON file.

import json
from vcfExporter import vcfExporter

js_file = 'progenetix_export.json'
with open(js_file, 'r') as fi:
    js = json.load(fi)

exporter = vcfExporter(js)
exporter.write('test.vcf')