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
08018011
Commit
08018011
authored
Mar 08, 2015
by
bow
Browse files
Use correct threads and mem values for Cufflinks and Gsnap wrapper
parent
e653337b
Changes
2
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/Cufflinks.scala
View file @
08018011
...
...
@@ -30,10 +30,10 @@ class Cufflinks(val root: Configurable) extends BiopetCommandLineFunction {
executable
=
config
(
"exe"
,
default
=
"cufflinks"
)
/** default threads */
override
def
defaultThreads
=
num_threads
.
getOrElse
(
1
)
override
val
defaultThreads
=
8
/** default vmem for cluster jobs */
override
def
defaultVmem
=
"4G"
override
val
defaultVmem
=
"4G"
/** input file */
@Input
(
doc
=
"Input file (SAM or BAM)"
,
required
=
true
)
...
...
@@ -194,7 +194,7 @@ class Cufflinks(val root: Configurable) extends BiopetCommandLineFunction {
def
cmdLine
=
required
(
executable
)
+
required
(
"--output-dir"
,
output_dir
)
+
optional
(
"--num-threads"
,
n
um_threads
)
+
optional
(
"--num-threads"
,
n
CoresRequest
)
+
optional
(
"--seed"
,
seed
)
+
optional
(
"--GTF"
,
GTF
)
+
optional
(
"--GTF-guide"
,
GTF_guide
)
+
...
...
public/biopet-framework/src/main/scala/nl/lumc/sasc/biopet/extensions/Gsnap.scala
View file @
08018011
...
...
@@ -23,10 +23,10 @@ class Gsnap(val root: Configurable) extends BiopetCommandLineFunction {
executable
=
config
(
"exe"
,
default
=
"gsnap"
,
freeVar
=
false
)
/** default threads */
override
def
defaultThreads
=
nthreads
.
getOrElse
(
1
)
override
val
defaultThreads
=
8
/** default vmem for cluster jobs */
override
def
defaultVmem
=
"4G"
override
val
defaultVmem
=
"4G"
/** input file */
@Input
(
doc
=
"Input FASTQ file(s)"
,
required
=
true
)
//var input: List[File] = _
...
...
@@ -371,7 +371,7 @@ class Gsnap(val root: Configurable) extends BiopetCommandLineFunction {
optional
(
"--use-tally"
,
use_tally
)
+
optional
(
"--runlengthdir"
,
runlengthdir
)
+
optional
(
"--use-runlength"
,
use_runlength
)
+
optional
(
"--nthreads"
,
n
threads
)
+
optional
(
"--nthreads"
,
n
CoresRequest
)
+
optional
(
"--gmap-mode"
,
gmap_mode
)
+
optional
(
"--trigger-score-for-gmap"
,
trigger_score_for_gmap
)
+
optional
(
"--gmap-min-match-length"
,
gmap_min_match_length
)
+
...
...
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