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
c78ca1be
Commit
c78ca1be
authored
Feb 06, 2015
by
bow
Browse files
Fix NullPointerException caused by Option[File] being null
parent
cda615ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/flexiprep/src/main/scala/nl/lumc/sasc/biopet/pipelines/flexiprep/Flexiprep.scala
View file @
c78ca1be
...
...
@@ -30,7 +30,7 @@ class Flexiprep(val root: Configurable) extends QScript with BiopetQScript {
var
input_R1
:
File
=
_
@Input
(
doc
=
"R2 fastq file (gzipped allowed)"
,
shortName
=
"R2"
,
required
=
false
)
var
input_R2
:
Option
[
File
]
=
_
var
input_R2
:
Option
[
File
]
=
None
/** Skip Trim fastq files */
var
skipTrim
:
Boolean
=
config
(
"skip_trim"
,
default
=
false
)
...
...
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