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
6d77359f
Commit
6d77359f
authored
Sep 01, 2014
by
Peter van 't Hof
Browse files
Added default values for bowtie
parent
998da3a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-framework/src/main/scala/nl/lumc/sasc/biopet/pipelines/sage/Sage.scala
View file @
6d77359f
...
...
@@ -26,6 +26,15 @@ class Sage(val root: Configurable) extends QScript with MultiSampleQScript {
var
tagsLibrary
:
File
=
_
defaults
++=
Map
(
"bowtie"
->
Map
(
"m"
->
1
,
"k"
->
1
,
"best"
->
true
,
"strata"
->
true
,
"seedmms"
->
1
)
)
def
init
()
{
for
(
file
<-
configfiles
)
globalConfig
.
loadConfigFile
(
file
)
if
(!
outputDir
.
endsWith
(
"/"
))
outputDir
+=
"/"
...
...
@@ -41,7 +50,7 @@ class Sage(val root: Configurable) extends QScript with MultiSampleQScript {
def
biopetScript
()
{
if
(
squishedCountBed
==
null
)
{
val
squishBed
=
SquishBed
.
apply
(
this
,
countBed
,
outputDir
)
val
squishBed
=
SquishBed
(
this
,
countBed
,
outputDir
)
add
(
squishBed
)
squishedCountBed
=
squishBed
.
output
}
...
...
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