예제 #1
0
def uris_to_paths(ctx, uris):
    fetcher = ToolLocationFetcher()
    paths = []
    for uri in uris:
        path = fetcher.to_tool_path(uri)
        paths.append(path)
    return paths
예제 #2
0
파일: tools.py 프로젝트: simonbray/planemo
def uris_to_paths(ctx, uris):
    """Fetch multiple URIs to a local path."""
    fetcher = ToolLocationFetcher()
    paths = []
    for uri in uris:
        path = fetcher.to_tool_path(uri)
        paths.append(path)
    return paths
예제 #3
0
파일: tools.py 프로젝트: simonbray/planemo
def uri_to_path(ctx, uri):
    """Fetch URI to a local path."""
    fetcher = ToolLocationFetcher()
    return fetcher.to_tool_path(uri)
예제 #4
0
def uri_to_path(ctx, uri):
    fetcher = ToolLocationFetcher()
    return fetcher.to_tool_path(uri)