Skip to content
Snippets Groups Projects
Commit 8ad1aa41 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fixed ; in values

parent b7bf9221
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,7 @@ object SnptestToVcf extends ToolCommand {
.stop(end)
.noGenotypes()
val infoBuilder = infoKeys.foldLeft(builder) { case (a, b) => a.attribute("ST_" + b, values(headerMap(b))) }
val infoBuilder = infoKeys.foldLeft(builder) { case (a, b) => a.attribute("ST_" + b, values(headerMap(b)).replaceAll(";", ",")) }
writer.add(builder.id(rsid.replaceAll(";", ",")).make())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment