Warning

This document is for an in-development version 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.file

from ..locations import (
    ToolLocationResolver,
)


[docs]class HttpToolResolver(ToolLocationResolver): scheme = "file"
[docs] def get_tool_source_path(self, uri_like): assert uri_like.startswith("file://") return uri_like[len("file://"):]