Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
f2645096
Commit
f2645096
authored
Jun 08, 2015
by
Peter van 't Hof
Browse files
Fix insertsize table
parent
afbc3f9b
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/bammetrics/src/main/resources/nl/lumc/sasc/biopet/pipelines/bammetrics/insertSize.ssp
View file @
f2645096
...
...
@@ -45,7 +45,7 @@
<th data-sorted="true" data-sorted-direction="ascending">Sample</th>
#if (!sampleLevel) <th>Library</th> #end
#for (field <- fields)
<th>${field}</th>
<th>${field
.replaceAll("_", " ")
}</th>
#end
</tr></thead>
<tbody>
...
...
@@ -65,7 +65,7 @@
val prefixPath = List("samples", sample) ::: (if (libId.isEmpty) Nil else List("libraries", libId)) ::: List("bammetrics", "stats")
val fieldValues = for (field <- fields) yield {
summary.getValue((prefixPath ::: List(
metricsTag, "stats", "i
nsert
_s
ize
_
metrics", field
)):_*
)
summary.getValue((prefixPath ::: List(
"CollectI
nsert
S
ize
Metrics", "
metrics", field
.toUpperCase)):_*).getOrElse(prefixPath ::: metricsTag :: Nil
)
}
}#
#for (value <- fieldValues)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment