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
bffb8a1b
Commit
bffb8a1b
authored
Jul 18, 2014
by
Peter van 't Hof
Browse files
Fix for outputDir
parent
94c23ca3
Changes
1
Hide whitespace changes
Inline
Side-by-side
gatk-genotyping/src/main/scala/nl/lumc/sasc/biopet/pipelines/gatk/GatkGenotyping.scala
View file @
bffb8a1b
...
...
@@ -33,6 +33,8 @@ class GatkGenotyping(val root:Configurable) extends QScript with BiopetQScript {
if
(
reference
==
null
)
reference
=
config
(
"reference"
)
if
(
dbsnp
==
null
&&
configContains
(
"dbsnp"
))
dbsnp
=
config
(
"dbsnp"
)
if
(
outputFile
==
null
)
outputFile
=
outputDir
+
outputName
+
".vcf"
if
(
outputDir
==
null
)
throw
new
IllegalStateException
(
"Missing Output directory on gatk module"
)
else
if
(!
outputDir
.
endsWith
(
"/"
))
outputDir
+=
"/"
}
def
biopetScript
()
{
...
...
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