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.tool_util.locations

import tempfile
from abc import (
    ABCMeta,
    abstractmethod,
    abstractproperty,
)


[docs]class ToolLocationResolver(metaclass=ABCMeta): """Parse a URI-like string and return a ToolSource object.""" @abstractproperty def scheme(self): """Short label for the type of location resolver and URI scheme."""
[docs] @abstractmethod def get_tool_source_path(self, uri_like): """Return a local path for the uri_like string."""
def _temp_path(self, uri_like): """Create an abstraction for this so we can configure and cache later.""" with tempfile.NamedTemporaryFile(suffix=uri_like.split("/")[-1], delete=False) as temp: return temp.name