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
207613f6
Commit
207613f6
authored
Feb 17, 2016
by
Peter van 't Hof
Browse files
Added check to output files of flexiprep also
parent
3f86deaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/flexiprep/src/main/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/Flexiprep.scala
View file @
207613f6
...
...
@@ -265,6 +265,17 @@ class Flexiprep(val root: Configurable) extends QScript with SummaryQScript with
}
}
val
validateFastq
=
new
ValidateFastq
(
this
)
validateFastq
.
r1Fastq
=
fastqR1Qc
validateFastq
.
r2Fastq
=
fastqR2Qc
validateFastq
.
jobOutputFile
=
new
File
(
outputDir
,
".validate_fastq.qc.log.out"
)
add
(
validateFastq
)
val
checkValidateFastq
=
new
CheckValidateFastq
checkValidateFastq
.
inputLogFile
=
validateFastq
.
jobOutputFile
checkValidateFastq
.
jobOutputFile
=
new
File
(
outputDir
,
".check.validate_fastq.qc.log.out"
)
add
(
checkValidateFastq
)
outputFiles
+=
(
"output_R1_gzip"
->
fastqR1Qc
)
if
(
paired
)
outputFiles
+=
(
"output_R2_gzip"
->
fastqR2Qc
.
get
)
...
...
Write
Preview
Supports
Markdown
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