Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
biopet.biopet
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirrors
biopet.biopet
Commits
843b569a
Commit
843b569a
authored
9 years ago
by
Sander van der Zeeuw
Browse files
Options
Downloads
Patches
Plain Diff
remove countline and add some documentation
parent
3ad1cd91
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
public/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/CheckFastqPairs.scala
+8
-1
8 additions, 1 deletion
...ain/scala/nl/lumc/sasc/biopet/tools/CheckFastqPairs.scala
with
8 additions
and
1 deletion
public/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/CheckFastqPairs.scala
+
8
−
1
View file @
843b569a
...
...
@@ -33,17 +33,21 @@ object CheckFastqPairs extends ToolCommand {
}
def
main
(
args
:
Array
[
String
])
:
Unit
=
{
//Start analyses of fastq files
logger
.
info
(
"Start"
)
//parse all possible options into OptParser
val
argsParser
=
new
OptParser
val
cmdArgs
:
Args
=
argsParser
.
parse
(
args
,
Args
())
getOrElse
sys
.
exit
(
1
)
//read in fastq file 1 and if present fastq file 2
val
readFq1
=
new
FastqReader
(
cmdArgs
.
input
)
val
readFq2
=
cmdArgs
.
input2
.
map
(
new
FastqReader
(
_
))
//define a counter to track the number of objects passing through the for loop
var
counter
=
0
var
countline
=
0
//Iterate over the fastq file check for the length of both files if not correct, exit the tool and print error message
for
(
recordR1
<-
readFq1
.
iterator
())
{
if
(
readFq2
.
map
(
_
.
hasNext
)
==
Some
(
false
))
throw
new
IllegalStateException
(
"R2 has less reads then R1"
)
...
...
@@ -51,6 +55,7 @@ object CheckFastqPairs extends ToolCommand {
//Getting R2 record, None if it's single end
val
recordR2
=
readFq2
.
map
(
_
.
next
())
//Here we check if the readnames of both files are concordant
recordR2
match
{
case
Some
(
recordR2
)
=>
// Paired End
val
readHeader
=
recordR1
.
getReadHeader
...
...
@@ -73,10 +78,12 @@ object CheckFastqPairs extends ToolCommand {
counter
+=
1
}
//if R2 is longer then R1 print an error code and exit the tool
if
(
readFq2
.
map
(
_
.
hasNext
)
==
Some
(
true
))
throw
new
IllegalStateException
(
"R2 has more reads then R1"
)
logger
.
info
(
"Done processing the Fastq file(s) no errors found"
)
//close both iterators
readFq1
.
close
()
readFq2
.
foreach
(
_
.
close
())
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment