Warning

This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.managers.lddas

from galaxy.managers import base as manager_base


[docs]class LDDAManager(object): """ A fairly sparse manager for LDDAs. """
[docs] def __init__(self, app): """ Set up and initialize other managers needed by lddas. """ pass
[docs] def get(self, trans, id, check_accessible=True): return manager_base.get_object(trans, id, 'LibraryDatasetDatasetAssociation', check_ownership=False, check_accessible=check_accessible)