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
aknecht2
Image Harvest
Commits
b3569135
Commit
b3569135
authored
Dec 07, 2015
by
aknecht2
Browse files
sql-aggregate input fix.
parent
3b08aa01
Changes
1
Hide whitespace changes
Inline
Side-by-side
ih/workflow.py
View file @
b3569135
...
...
@@ -740,7 +740,7 @@ class ImageProcessor(Workflow):
self
.
_addJob
(
type
+
"_extractBins"
+
str
(
q
),
"ih-extract-multi"
,
exInput
[
type
][
q
],
{
"copydb"
:
{
"file"
:
type
+
str
(
q
)
+
"_2.db"
,
"transfer"
:
False
}},
arguments
,
[
"bin_creation"
],
walltime
=
300
)
self
.
_addJob
(
type
+
"_extractBins"
+
str
(
q
),
"ih-extract-multi"
,
exInput
[
type
][
q
],
{
"copydb"
:
{
"file"
:
type
+
str
(
q
)
+
"_2.db"
,
"transfer"
:
False
}},
arguments
,
[
"bin_creation"
],
dax
=
self
.
exdax
,
walltime
=
300
)
binDep
.
append
(
type
+
"_extractBins"
+
str
(
q
))
aggIn
[
"db"
]
=
{
"file"
:
"img2.db"
,
"transfer"
:
False
}
aggIn
2
[
"db"
]
=
{
"file"
:
"img2.db"
,
"transfer"
:
False
}
self
.
_addJob
(
"sql_aggregate2"
,
"ih-sql-aggregate"
,
aggIn2
,
{
"img3.db"
:
{
"file"
:
"img3.db"
,
"transfer"
:
True
}},
{
"--db"
:
"db"
,
"--output"
:
"img3.db"
,
"--inputs"
:
" "
.
join
([
aggIn2
[
x
][
"file"
]
for
x
in
aggIn2
if
x
!=
"db"
])},
binDep
,
walltime
=
180
)
self
.
_addJob
(
"sql_aggregate2"
,
"ih-sql-aggregate"
,
aggIn2
,
{
"img3.db"
:
{
"file"
:
"img3.db"
,
"transfer"
:
True
}},
{
"--db"
:
"db"
,
"--output"
:
"img3.db"
,
"--inputs"
:
" "
.
join
([
aggIn2
[
x
][
"file"
]
for
x
in
aggIn2
if
x
!=
"db"
])},
binDep
,
dax
=
self
.
exdax
,
walltime
=
180
)
...
...
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