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
849188d8
Commit
849188d8
authored
Sep 09, 2014
by
Peter van 't Hof
Browse files
Fix default aligner in constructor
parent
71b12276
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-framework/src/main/scala/nl/lumc/sasc/biopet/pipelines/mapping/Mapping.scala
View file @
849188d8
...
...
@@ -287,7 +287,7 @@ object Mapping extends PipelineCommand {
var
inputType
=
""
if
(
runConfig
.
contains
(
"inputtype"
))
inputType
=
runConfig
(
"inputtype"
).
toString
else
inputType
=
root
.
config
(
"inputtype"
,
"dna"
).
getString
if
(
inputType
==
"rna"
)
mapping
.
a
ligner
=
root
.
config
(
"rna_aligner"
,
"star-2pass"
).
getString
if
(
inputType
==
"rna"
)
mapping
.
defaultA
ligner
=
"star-2pass"
if
(
runConfig
.
contains
(
"R1"
))
mapping
.
input_R1
=
new
File
(
runConfig
(
"R1"
).
toString
)
if
(
runConfig
.
contains
(
"R2"
))
mapping
.
input_R2
=
new
File
(
runConfig
(
"R2"
).
toString
)
mapping
.
paired
=
(
mapping
.
input_R2
!=
null
)
...
...
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