cr-connect-workflow/crc/scripts/study_data_set.py

33 lines
1.1 KiB
Python
Raw Normal View History

2021-06-02 10:00:55 -04:00
from crc.services.data_store_service import DataStoreBase
from crc.scripts.script import Script
class StudyDataSet(Script,DataStoreBase):
def get_description(self):
2021-02-24 12:05:06 -05:00
return """Sets study data from the data store. Takes two positional arguments key and value"""
def do_task_validate_only(self, task, study_id, workflow_id, *args, **kwargs):
2020-11-10 11:32:59 -05:00
self.set_validate_common(study_id,
workflow_id,
None,
'study_data_set',
None,
2020-11-10 11:32:59 -05:00
*args)
def do_task(self, task, study_id, workflow_id, *args, **kwargs):
2020-11-11 09:44:58 -05:00
return self.set_data_common(task.id,
2020-11-10 11:32:59 -05:00
study_id,
None,
workflow_id,
2020-11-11 09:44:58 -05:00
None,
2020-11-10 11:32:59 -05:00
'study_data_set',
None,
2020-11-10 11:32:59 -05:00
*args,
**kwargs)