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
bob
bob.bio.base
Commits
6a8e929a
Commit
6a8e929a
authored
Jul 04, 2015
by
Elie KHOURY
Browse files
fix to avoid processing unnecessary files
parent
d509aee6
Changes
1
Hide whitespace changes
Inline
Side-by-side
bob/bio/base/script/verify.py
View file @
6a8e929a
...
...
@@ -51,7 +51,7 @@ def add_jobs(args, submitter):
jobs_to_execute
.
append
((
'preprocess'
,))
else
:
job_ids
[
'preprocessing'
]
=
submitter
.
submit
(
'--sub-task preprocess
'
,
'--sub-task preprocess
--groups %s'
%
(
' '
.
join
(
args
.
groups
))
,
number_of_parallel_jobs
=
args
.
grid
.
number_of_preprocessing_jobs
,
dependencies
=
deps
,
**
args
.
grid
.
preprocessing_queue
)
...
...
@@ -75,7 +75,7 @@ def add_jobs(args, submitter):
jobs_to_execute
.
append
((
'extract'
,))
else
:
job_ids
[
'extraction'
]
=
submitter
.
submit
(
'--sub-task extract
'
,
'--sub-task extract
--groups %s'
%
(
' '
.
join
(
args
.
groups
))
,
number_of_parallel_jobs
=
args
.
grid
.
number_of_extraction_jobs
,
dependencies
=
deps
,
**
args
.
grid
.
extraction_queue
)
...
...
@@ -99,7 +99,7 @@ def add_jobs(args, submitter):
jobs_to_execute
.
append
((
'project'
,))
else
:
job_ids
[
'projection'
]
=
submitter
.
submit
(
'--sub-task project
'
,
'--sub-task project
--groups %s'
%
(
' '
.
join
(
args
.
groups
))
,
number_of_parallel_jobs
=
args
.
grid
.
number_of_projection_jobs
,
dependencies
=
deps
,
**
args
.
grid
.
projection_queue
)
...
...
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