Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Mirrors
biopet.biopet
Commits
95f8441a
Commit
95f8441a
authored
Jun 01, 2016
by
Peter van 't Hof
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed a config value
parent
bfdad518
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/gatk/HaplotypeCaller.scala
...nl/lumc/sasc/biopet/extensions/gatk/HaplotypeCaller.scala
+2
-2
No files found.
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/gatk/HaplotypeCaller.scala
View file @
95f8441a
...
...
@@ -90,7 +90,7 @@ class HaplotypeCaller(val root: Configurable) extends CommandLineGATK with Scatt
/** Mode for emitting reference confidence scores */
@Argument
(
fullName
=
"emitRefConfidence"
,
shortName
=
"ERC"
,
doc
=
"Mode for emitting reference confidence scores"
,
required
=
false
,
exclusiveOf
=
""
,
validation
=
""
)
var
emitRefConfidence
:
String
=
_
var
emitRefConfidence
:
Option
[
String
]
=
config
(
"emitRefConfidence"
)
/** File to which assembled haplotypes should be written */
@Output
(
fullName
=
"bamOutput"
,
shortName
=
"bamout"
,
doc
=
"File to which assembled haplotypes should be written"
,
required
=
false
,
exclusiveOf
=
""
,
validation
=
""
)
...
...
@@ -525,7 +525,7 @@ object HaplotypeCaller {
def
gvcf
(
root
:
Configurable
,
inputFile
:
File
,
outputFile
:
File
)
:
HaplotypeCaller
=
{
val
hc
=
apply
(
root
,
List
(
inputFile
),
outputFile
)
hc
.
emitRefConfidence
=
"GVCF"
hc
.
emitRefConfidence
=
Some
(
"GVCF"
)
hc
.
variant_index_type
=
Some
(
"LINEAR"
)
hc
.
variant_index_parameter
=
Some
(
hc
.
config
(
"variant_index_parameter"
,
default
=
128000
).
asInt
)
hc
...
...
Write
Preview
Markdown
is supported
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