django_to_galaxy.models.Invocation
- class django_to_galaxy.models.Invocation(*args, **kwargs)
Table for invocations of workflow.
- __init__(*args, **kwargs)
Methods
__init__(*args, **kwargs)check(**kwargs)clean()Hook for doing any extra model-wide validation after clean() has been called on every field by self.clean_fields.
clean_fields([exclude])Clean all fields and raise a ValidationError containing a dict of all validation errors if any occur.
create_output_files([max_retry])Create output files generated in the invocation.
date_error_message(lookup_type, field_name, ...)delete([using, keep_parents])from_db(db, field_names, values)full_clean([exclude, validate_unique, ...])Call clean_fields(), clean(), validate_unique(), and validate_constraints() on the model.
get_constraints()get_deferred_fields()Return a set containing names of deferred fields for this instance.
get_next_by_create_time(*[, field, is_next])get_previous_by_create_time(*[, field, is_next])get_status_display(*[, field])prepare_database_save(field)refresh_from_db([using, fields])Reload field values from the database.
save([force_insert, force_update, using, ...])Save the current instance.
save_base([raw, force_insert, force_update, ...])Handle the parts of saving which should be done only once per save, yet need to be done in raw saves, too.
serializable_value(field_name)Return the value of the field name for this instance.
synchronize()Synchronize data from Galaxy instance.
unique_error_message(model_class, unique_check)update_output_files()Update output files generated in the invocation.
validate_constraints([exclude])validate_unique([exclude])Check unique constraints on the model and raise ValidationError if any failed.
Attributes
create_timeTime the invocation was created.
detailed_step_jobs_summaryRetrive step_jobs_summary with details of tool used.
galaxy_idInvocation id used on the galaxy side.
galaxy_invocationGalaxy object using bioblend.
galaxy_stateState on the galaxy side.
historyHistory used for the invocation.
history_ididA wrapper for a deferred-loading field.
job_id_to_toolsDict of job_id to wrapped tool.
objectsoutput_filesAccessor to the related objects manager on the reverse side of a many-to-one relation.
percentage_doneRetrieve percentage of jobs done for the invocation.
pkstatusStatus of the invocation.
workflowWorkflow the invocation comes from.
workflow_id