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

33 lines
1.1 KiB
Python
Raw Normal View History

2021-06-02 14:00:55 +00: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 17:05:06 +00: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 16:32:59 +00:00
self.set_validate_common(study_id,
workflow_id,
None,
'study_data_set',
None,
2020-11-10 16:32:59 +00:00
*args)
def do_task(self, task, study_id, workflow_id, *args, **kwargs):
2020-11-11 14:44:58 +00:00
return self.set_data_common(task.id,
2020-11-10 16:32:59 +00:00
study_id,
None,
workflow_id,
2020-11-11 14:44:58 +00:00
None,
2020-11-10 16:32:59 +00:00
'study_data_set',
None,
2020-11-10 16:32:59 +00:00
*args,
**kwargs)