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

Fix code style

parent 7852e631
No related branches found
No related tags found
No related merge requests found
......@@ -53,8 +53,10 @@ object SamplesTsvToJson extends ToolCommand {
val values = tsvLine.split("\t")
val sample = values(sampleColumn)
val library = if (libraryColumn != -1) values(libraryColumn) else null
val valuesMap = (for (t <- 0 until values.size;
if !values(t).isEmpty && t != sampleColumn && t != libraryColumn) yield (header(t) -> values(t))).toMap
val valuesMap = (for (
t <- 0 until values.size;
if !values(t).isEmpty && t != sampleColumn && t != libraryColumn
) yield (header(t) -> values(t))).toMap
val map: Map[String, Any] = if (library != null) {
Map("samples" -> Map(sample -> Map("libraries" -> Map(library -> valuesMap))))
} else {
......
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