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.dataset_collections.registry
from galaxy import model
from .types import (
list,
paired
)
PLUGIN_CLASSES = [list.ListDatasetCollectionType, paired.PairedDatasetCollectionType]
[docs]class DatasetCollectionTypesRegistry(object):
[docs] def __init__(self, app):
self.__plugins = dict([(p.collection_type, p()) for p in PLUGIN_CLASSES])
[docs] def prototype(self, plugin_type):
plugin_type_object = self.get(plugin_type)
if not hasattr(plugin_type_object, 'prototype_elements'):
raise Exception("Cannot pre-determine structure for collection of type %s" % plugin_type)
dataset_collection = model.DatasetCollection()
elements = [e for e in plugin_type_object.prototype_elements()]
dataset_collection.elements = elements
return dataset_collection