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
2838b39a
Commit
2838b39a
authored
Feb 03, 2015
by
Peter van 't Hof
Browse files
Change on empty string check
parent
33a8edef
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/core/BiopetCommandLineFunctionTrait.scala
View file @
2838b39a
...
...
@@ -60,7 +60,7 @@ trait BiopetCommandLineFunctionTrait extends CommandLineFunction with Configurab
if
(
vmem
.
isEmpty
)
{
vmem
=
config
(
"vmem"
)
if
(
vmem
.
isEmpty
&&
!
defaultVmem
.
is
Empty
)
vmem
=
Some
(
defaultVmem
)
if
(
vmem
.
isEmpty
&&
defaultVmem
.
non
Empty
)
vmem
=
Some
(
defaultVmem
)
}
if
(
vmem
!=
null
)
jobResourceRequests
:+=
"h_vmem="
+
vmem
jobName
=
configName
+
":"
+
firstOutput
.
getName
...
...
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