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
a9645551
Commit
a9645551
authored
Mar 09, 2015
by
Sander Bollen
Browse files
Fix output directory path in Toucan
parent
7339ef7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/toucan/src/main/scala/nl/lumc/sasc/biopet/pipelines/toucan/Toucan.scala
View file @
a9645551
...
...
@@ -30,7 +30,7 @@ class Toucan(val root: Configurable) extends QScript with BiopetQScript {
def
biopetScript
()
:
Unit
=
{
val
vep
=
new
VariantEffectPredictor
(
this
)
vep
.
input
=
inputVCF
vep
.
output
=
outputDir
+
inputVCF
.
getName
.
stripSuffix
(
".gz"
).
stripSuffix
(
".vcf"
)
+
".vep.vcf"
vep
.
output
=
new
File
(
outputDir
,
inputVCF
.
getName
.
stripSuffix
(
".gz"
).
stripSuffix
(
".vcf"
)
+
".vep.vcf"
)
vep
.
isIntermediate
=
true
add
(
vep
)
...
...
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