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
This commit is contained in:
parent
653f70efa2
commit
217deb9809
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue