From 217deb980979fd82d7b7dfaf3b6d7e4deb776948 Mon Sep 17 00:00:00 2001 From: kiran Date: Tue, 16 Feb 2010 20:44:57 +0000 Subject: [PATCH] Changed the INFO field delimiter from a comma to a semicolon git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2847 348d0f76-0448-11de-a6fe-93d51630548a --- python/AnnotateVCFwithMAF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/AnnotateVCFwithMAF.py b/python/AnnotateVCFwithMAF.py index 00f83e59b..486c3682f 100755 --- a/python/AnnotateVCFwithMAF.py +++ b/python/AnnotateVCFwithMAF.py @@ -22,7 +22,7 @@ for record in maf_gen: for index,header in enumerate(headers): if record.has_key(header): if index > 0: - info_string += "," + info_string += ";" info_string += "%s=%s" % (header, record[header]) locus = record["chr"]+":"+record["start"]