Skip to main content

ConsensusAnnotationTask Objects

class ConsensusAnnotationTask(WorkflowTask)
Represents tasks in the Annotate stage of a Consensus Project. Attributes
  • data_hash (UUID): Unique ID for the data unit.
  • data_title (str): Name of the data unit.
  • subtasks (List[AnnotationTask]): List of tasks from individual annotators in a Consensus Project.
Allowed actions
  • move: Moves the consensus annotation task to another stage in the workflow.

move

def move(*,
         destination_stage_uuid: UUID,
         bundle: Optional[Bundle] = None) -> None
Moves the consensus annotation task from its current stage to another stage. Parameters
  • destination_stage_uuid (UUID): Unique identifier of the stage to move the task to.
  • bundle (Optional[Bundle]): Optional bundle to be included with the move.
Returns None
I