Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ng6
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
genotoul-bioinfo
ng6
Commits
a2966774
Commit
a2966774
authored
4 years ago
by
Celine Noirot
Browse files
Options
Downloads
Patches
Plain Diff
#190
to be tested
parent
a3e8ceac
No related branches found
Branches containing commit
Tags
V3.2.8
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ng6/analysis.py
+7
-13
7 additions, 13 deletions
src/ng6/analysis.py
with
7 additions
and
13 deletions
src/ng6/analysis.py
+
7
−
13
View file @
a2966774
...
...
@@ -752,25 +752,19 @@ class Analysis (Component):
return
[
retcode
,
str_cmd
]
def
get_directory
(
self
):
"""
Returns a analysis
'
s directory
"""
if
self
.
id
!=
None
:
t3mysql
=
t3MySQLdb
()
return
t3mysql
.
select_analysis_directory
(
self
.
id
)
else
:
raise
UnsavedAnalysisError
()
def
get_web_filepath
(
self
,
file_name
,
base_filepath
=
'
fileadmin
'
):
def
get_web_filepath
(
self
,
file_name
,
base_filepath
=
'
fileadmin
'
):
"""
returns the full web filepath from a given filename
@param file_name : the path to the file to link
@param base_filepath : the first directory in the path (depends on the server
'
s directory structure)
@return : the full web filepath
"""
logging
.
getLogger
(
"
Analysis.get_web_filepath
"
).
debug
(
"
IN analysis.get_web_filepath()
"
)
return
base_filepath
+
os
.
path
.
join
(
self
.
get_directory
(),
file_name
)
curr_dir
=
self
.
directory
if
self
.
id
!=
None
:
t3mysql
=
t3MySQLdb
()
curr_dir
=
t3mysql
.
select_analysis_directory
(
self
.
id
)
return
base_filepath
+
os
.
path
.
join
(
self
.
directory
,
file_name
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment