Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clowdflows
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alain Shakour
clowdflows
Commits
36b8482b
Commit
36b8482b
authored
Mar 25, 2015
by
Janez K
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
explicit orders for cv inputs and outputs
parent
f5389ecf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
workflows/views.py
workflows/views.py
+9
-3
No files found.
workflows/views.py
View file @
36b8482b
...
...
@@ -549,7 +549,8 @@ def add_cv(request):
output
=
Output
()
output
.
name
=
'cv input data'
output
.
short_name
=
'trn'
# subproces inner input
output
.
variable
=
'CVD'
output
.
variable
=
'TRAIN'
output
.
order
=
1
output
.
widget
=
cv_input_data
output
.
save
()
input
=
Input
()
...
...
@@ -558,6 +559,7 @@ def add_cv(request):
input
.
short_name
=
'dat'
# subproces input
input
.
variable
=
'CVD'
input
.
inner_output
=
output
input
.
order
=
1
input
.
save
()
output
.
outer_input
=
input
output
.
save
()
...
...
@@ -566,7 +568,8 @@ def add_cv(request):
output
=
Output
()
output
.
name
=
'cv input data'
output
.
short_name
=
'tst'
# subproces inner input
output
.
variable
=
'CVF'
output
.
variable
=
'TEST'
output
.
order
=
2
output
.
widget
=
cv_input_data
output
.
save
()
input
=
Input
()
...
...
@@ -575,6 +578,7 @@ def add_cv(request):
input
.
short_name
=
'cvf'
input
.
variable
=
'CVF'
input
.
inner_output
=
output
input
.
order
=
2
input
.
save
()
output
.
outer_input
=
input
output
.
save
()
...
...
@@ -582,7 +586,8 @@ def add_cv(request):
output
=
Output
()
output
.
name
=
'cv input data'
output
.
short_name
=
'sed'
# subproces inner input
output
.
variable
=
'CVS'
output
.
variable
=
'SEED'
output
.
order
=
3
output
.
widget
=
cv_input_data
output
.
save
()
input
=
Input
()
...
...
@@ -590,6 +595,7 @@ def add_cv(request):
input
.
name
=
'cv input seed'
input
.
short_name
=
'sed'
input
.
variable
=
'CVS'
input
.
order
=
3
input
.
inner_output
=
output
input
.
save
()
output
.
outer_input
=
input
...
...
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