Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
biopet.biopet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Mirrors
biopet.biopet
Commits
4a9966de
Commit
4a9966de
authored
Mar 27, 2017
by
Peter van 't Hof
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing code warnings
parent
793b521d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/Cuffquant.scala
...main/scala/nl/lumc/sasc/biopet/extensions/Cuffquant.scala
+7
-5
No files found.
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/Cuffquant.scala
View file @
4a9966de
...
...
@@ -16,9 +16,11 @@ package nl.lumc.sasc.biopet.extensions
import
java.io.File
import
nl.lumc.sasc.biopet.core.
{
Version
,
BiopetCommandLineFunction
}
import
nl.lumc.sasc.biopet.core.
{
BiopetCommandLineFunction
,
Version
}
import
nl.lumc.sasc.biopet.utils.config.Configurable
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
}
import
org.broadinstitute.gatk.utils.commandline.
{
Input
,
Output
}
import
scala.util.matching.Regex
/**
* Wrapper for the cuffquant command line tool.
...
...
@@ -116,11 +118,11 @@ class Cuffquant(val root: Configurable) extends BiopetCommandLineFunction with V
/** Disable SCV correction */
var
noScvCorrection
:
Boolean
=
config
(
"no_scv_correction"
,
default
=
false
)
def
versionRegex
=
"""cuffquant v(.*)"""
.
r
def
versionCommand
=
executable
def
versionRegex
:
Regex
=
"""cuffquant v(.*)"""
.
r
def
versionCommand
:
String
=
executable
override
def
versionExitcode
=
List
(
0
,
1
)
def
cmdLine
=
def
cmdLine
:
String
=
required
(
executable
)
+
required
(
"--output-dir"
,
outputDir
)
+
optional
(
"--mask-file"
,
maskFile
)
+
...
...
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