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
ef36c469
Commit
ef36c469
authored
Apr 07, 2017
by
Peter van 't Hof
Browse files
Merge remote-tracking branch 'remotes/origin/develop' into fix-BIOPET-618
parents
0724a458
63c00a91
Changes
1
Hide whitespace changes
Inline
Side-by-side
biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/extensions/PythonCommandLineFunction.scala
View file @
ef36c469
...
...
@@ -33,7 +33,7 @@ trait PythonCommandLineFunction extends BiopetCommandLineFunction {
* @param script name / location of script
*/
def
setPythonScript
(
script
:
String
)
{
pythonScript
=
new
File
(
script
)
pythonScript
=
new
File
(
script
)
.
getAbsoluteFile
if
(!
pythonScript
.
exists
())
{
setPythonScript
(
script
,
""
)
}
else
{
...
...
@@ -48,7 +48,7 @@ trait PythonCommandLineFunction extends BiopetCommandLineFunction {
*/
def
setPythonScript
(
script
:
String
,
subpackage
:
String
)
{
pythonScriptName
=
script
pythonScript
=
new
File
(
".queue/tmp/"
+
subpackage
+
pythonScriptName
)
pythonScript
=
new
File
(
".queue/tmp/"
+
subpackage
+
pythonScriptName
)
.
getAbsoluteFile
if
(!
pythonScript
.
getParentFile
.
exists
)
pythonScript
.
getParentFile
.
mkdirs
val
is
=
getClass
.
getResourceAsStream
(
subpackage
+
pythonScriptName
)
if
(
is
!=
null
)
{
...
...
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