Source code for snakemake.remote

# remote providers have been replaced by storage plugins, see
# https://github.com/snakemake/snakemake-interface-storage-plugins


[docs] class RemoteProviderBase: def __init__(self, *args, **kwargs): # TODO add URL to plugin documentation/catalog raise NotImplementedError( "Remote providers have been replaced by Snakemake storage plugins. Please " "use the corresponding storage plugin instead (snakemake-storage-plugin-*)." )