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
90d86e6c
Commit
90d86e6c
authored
Jul 26, 2017
by
Peter van 't Hof
Browse files
Fixing version regex
parent
394ba9f1
Changes
2
Hide whitespace changes
Inline
Side-by-side
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/stringtie/Stringtie.scala
View file @
90d86e6c
...
...
@@ -52,7 +52,7 @@ class Stringtie(val parent: Configurable)
def
versionCommand
:
String
=
executable
+
" --version"
/** Regex to get version from version command output */
def
versionRegex
:
Regex
=
".*"
.
r
def
versionRegex
:
Regex
=
"
(
.*
)
"
.
r
def
cmdLine
:
String
=
required
(
executable
)
+
...
...
biopet-extensions/src/main/scala/nl/lumc/sasc/biopet/extensions/stringtie/StringtieMerge.scala
View file @
90d86e6c
...
...
@@ -37,7 +37,7 @@ class StringtieMerge(val parent: Configurable)
def
versionCommand
:
String
=
executable
+
" --version"
/** Regex to get version from version command output */
def
versionRegex
:
Regex
=
".*"
.
r
def
versionRegex
:
Regex
=
"
(
.*
)
"
.
r
def
cmdLine
:
String
=
required
(
executable
)
+
...
...
Write
Preview
Supports
Markdown
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