Skip to content
Snippets Groups Projects
Commit e84e100c authored by Nathaniel Kofalt's avatar Nathaniel Kofalt
Browse files

Add algorithm_id to job

parent 10d9f102
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ def createJob(db, jobType, containerType, containerID, attemptN=1, previousJobID
db: pymongo.database.Database
Reference to the database instance
jobType: string
Human-friendly name of the algorithm
Human-friendly unique name of the algorithm
containerType: string
Type of container ('acquisition', 'session', etc)
containerID: string
......@@ -68,33 +68,38 @@ def createJob(db, jobType, containerType, containerID, attemptN=1, previousJobID
'created': now,
'modified': now,
'inputs': [
{
'type': 'scitran',
'location': '/',
'URI': 'TBD',
},
{
'type': 'scitran',
'location': '/script',
'URI': 'TBD',
'algorithm_id': jobType,
'formula': {
'inputs': [
{
'type': 'scitran',
'location': '/',
'URI': 'TBD',
},
{
'type': 'scitran',
'location': '/script',
'URI': 'TBD',
},
],
'accents': {
'cwd': "/script",
'command': [ 'TBD' ],
'environment': { },
},
],
'outputs': [
{
'type': 'scitran',
'location': '/output',
'URI': 'TBD',
},
],
}
'accents': {
'cwd': "/script",
'command': [ 'TBD' ],
'environment': { },
},
'outputs': [
{
'type': 'scitran',
'location': '/output',
'URI': 'TBD',
},
],
}
if previousJobID is not None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment