39 lines
1.0 KiB
Python
Executable File
39 lines
1.0 KiB
Python
Executable File
from farm_commands2 import *
|
|
import os.path
|
|
import sys
|
|
from optparse import OptionParser
|
|
from datetime import date
|
|
import glob
|
|
import operator
|
|
import faiReader
|
|
import math
|
|
import shutil
|
|
import string
|
|
|
|
def main():
|
|
global OPTIONS
|
|
usage = "usage: %prog [options] b36VCF hg18VCF"
|
|
parser = OptionParser(usage=usage)
|
|
parser.add_option("", "--dry", dest="dry",
|
|
action='store_true', default=False,
|
|
help="If provided, nothing actually gets run, just a dry run")
|
|
|
|
(OPTIONS, args) = parser.parse_args()
|
|
if len(args) != 2:
|
|
parser.error("incorrect number of arguments")
|
|
|
|
b36vcf, hg18vcf = args
|
|
|
|
out = open(hg18vcf, 'w')
|
|
for line in open(b36vcf):
|
|
length = len(line)
|
|
if length > 2 and line[0] != '#':
|
|
if line[0:2] == 'MT':
|
|
sys.exit('Cannot convert MT containing VCFs, sorry')
|
|
line = 'chr' + line
|
|
out.write(line)
|
|
out.close()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|