Skip to content
GitLab
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
ba0e37f1
Commit
ba0e37f1
authored
Feb 04, 2015
by
bow
Browse files
Fix bug caused by incorrect split regex
parent
752d48da
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/flexiprep/src/main/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/Fastqc.scala
View file @
ba0e37f1
...
...
@@ -111,7 +111,7 @@ class Fastqc(root: Configurable) extends nl.lumc.sasc.biopet.extensions.Fastqc(r
(
for
{
line
<-
Source
.
fromFile
(
f
).
getLines
()
if
!
line
.
startsWith
(
"#"
)
values
=
line
.
split
(
"\t
*
"
)
values
=
line
.
split
(
"\t
+
"
)
if
values
.
size
>=
2
}
yield
AdapterSequence
(
values
(
0
),
values
(
1
))).
toSet
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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