File: vcf2bed.py

package info (click to toggle)
libvcflib 1.0.0~rc2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 51,048 kB
  • sloc: cpp: 30,004; perl: 474; sh: 247; makefile: 206; python: 200; ansic: 148
file content (16 lines) | stat: -rwxr-xr-x 429 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

import sys

for line in sys.stdin:
    if line.startswith('#'):
        continue
    fields = line.strip().split()
    # VCF is 1-based, BED is 0-based half open
    # print out chrom, start, end, 
    chrom = fields[0]
    start = int(fields[1]) - 1
    span = len(fields[3]) # handle multi-base alleles
    end = start + span
    name = fields[2]
    print "\t".join(map(str, [chrom, start, end, name]))