Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Maintenance - Mise à jour mensuelle Lundi 6 Février entre 7h00 et 9h00
Open sidebar
genotoul-bioinfo
D-GENIES
Commits
54874b14
Commit
54874b14
authored
Jun 18, 2018
by
Floreal Cabanettes
Browse files
Fix for readthedoc
parent
31fc9dc1
Changes
3
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
54874b14
...
...
@@ -17,6 +17,13 @@ if os.name == "posix":
config_dir
=
os
.
path
.
join
(
str
(
Path
.
home
()),
".dgenies"
)
wsgi_dir
=
config_dir
data_files
=
[(
config_dir
,
[
'application.properties'
]),
(
config_dir
,
[
'tools.yaml'
]),
(
wsgi_dir
,
[
'dgenies.wsgi'
])]
if
'--force'
in
sys
.
argv
:
data_files
=
[]
setup
(
name
=
'dgenies'
,
version
=
version
,
...
...
@@ -25,9 +32,7 @@ if os.name == "posix":
include_package_data
=
True
,
zip_safe
=
False
,
install_requires
=
install_reqs
,
data_files
=
[(
config_dir
,
[
'application.properties'
]),
(
config_dir
,
[
'tools.yaml'
]),
(
wsgi_dir
,
[
'dgenies.wsgi'
])],
data_files
=
data_files
,
scripts
=
[
'src/bin/dgenies'
],
)
...
...
src/dgenies/lib/drmaasession.py
View file @
54874b14
import
drmaa
try
:
import
drmaa
except
:
print
(
"Error: unable to import DRMAA module"
)
from
.decorators
import
Singleton
@
Singleton
...
...
src/dgenies/views.py
View file @
54874b14
...
...
@@ -487,7 +487,7 @@ def free_noise(id_res):
def
build_fasta
(
id_res
):
"""
Generate the fasta file of query
:param id_res: job id
:type id_res: str
"""
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment