Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
biopet.biopet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Mirrors
biopet.biopet
Commits
cb93552e
Commit
cb93552e
authored
May 24, 2016
by
bow
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-mapping_plot' into 'develop'
Fix mapping plot in report Fixes #349 See merge request !411
parents
160ed2d3
00bf2bf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bammetrics/src/main/scala/nl/lumc/sasc/biopet/pipelines/bammetrics/BammetricsReport.scala
...c/sasc/biopet/pipelines/bammetrics/BammetricsReport.scala
+2
-2
No files found.
bammetrics/src/main/scala/nl/lumc/sasc/biopet/pipelines/bammetrics/BammetricsReport.scala
View file @
cb93552e
...
@@ -127,9 +127,9 @@ object BammetricsReport extends ReportBuilder {
...
@@ -127,9 +127,9 @@ object BammetricsReport extends ReportBuilder {
summary
,
Some
(
sample
),
lib
).
value
.
getOrElse
(
0
).
toString
.
toLong
summary
,
Some
(
sample
),
lib
).
value
.
getOrElse
(
0
).
toString
.
toLong
val
sb
=
new
StringBuffer
()
val
sb
=
new
StringBuffer
()
if
(
lib
.
isDefined
)
sb
.
append
(
sample
+
"-"
+
lib
.
get
+
"\t"
)
else
sb
.
append
(
sample
+
"\t"
)
if
(
lib
.
isDefined
)
sb
.
append
(
sample
+
"-"
+
lib
.
get
+
"\t"
)
else
sb
.
append
(
sample
+
"\t"
)
sb
.
append
((
mapped
-
duplicates
)
+
"\t"
)
sb
.
append
((
mapped
-
duplicates
-
secondary
)
+
"\t"
)
sb
.
append
(
duplicates
+
"\t"
)
sb
.
append
(
duplicates
+
"\t"
)
sb
.
append
((
total
-
mapped
-
secondary
)
+
"\t"
)
sb
.
append
((
total
-
mapped
)
+
"\t"
)
sb
.
append
(
secondary
)
sb
.
append
(
secondary
)
sb
.
toString
sb
.
toString
}
}
...
...
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