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
genotoul-bioinfo
ng6
Commits
492c9bfb
Commit
492c9bfb
authored
Jul 07, 2020
by
Romain Therville
🐭
Browse files
The call to get_directory() in analysis.py -> get_web_filepath() was
wrong. Issue
#129
parent
267d2c28
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ng6/analysis.py
View file @
492c9bfb
...
...
@@ -771,6 +771,6 @@ class Analysis (Component):
@param base_filepath : the first directory in the path (depends on the server's directory structure)
@return : the full web filepath
"""
return
base_filepath
+
os
.
path
.
join
(
self
.
get_directory
,
file_name
)
return
base_filepath
+
os
.
path
.
join
(
self
.
get_directory
()
,
file_name
)
\ No newline at end of file
Romain Therville
🐭
@rtherville
mentioned in issue
#129 (closed)
·
Jul 07, 2020
mentioned in issue
#129 (closed)
mentioned in issue #129
Toggle commit list
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