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
faf87971
Commit
faf87971
authored
Apr 07, 2017
by
Peter van 't Hof
Committed by
GitHub
Apr 07, 2017
Browse files
Merge branch 'develop' into fix-BIOPET-638
parents
8f546e03
63c00a91
Changes
1
Show whitespace changes
Inline
Side-by-side
biopet-core/src/main/scala/nl/lumc/sasc/biopet/core/extensions/PythonCommandLineFunction.scala
View file @
faf87971
...
...
@@ -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