Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions client/src/api/fileSources.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ export const templateTypes: FileSourceTypesDetail = {
icon: faHubspot,
message: "This is a file repository plugin that connects with the Hugging Face Hub.",
},
omero: {
icon: faNetworkWired,
message: "This is a file repository plugin that connects with an OMERO server.",
},
};

export const FileSourcesValidFilters = {
Expand Down
6 changes: 4 additions & 2 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11882,7 +11882,8 @@ export interface components {
| "zenodo"
| "rspace"
| "dataverse"
| "huggingface";
| "huggingface"
| "omero";
/** Variables */
variables?:
| (
Expand Down Expand Up @@ -23040,7 +23041,8 @@ export interface components {
| "zenodo"
| "rspace"
| "dataverse"
| "huggingface";
| "huggingface"
| "omero";
/** Uri Root */
uri_root: string;
/**
Expand Down
3 changes: 3 additions & 0 deletions lib/galaxy/dependencies/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,9 @@ def is_redis_url(url: str) -> bool:
def check_huggingface_hub(self):
return "huggingface" in self.file_sources

def check_omero_py(self):
return "omero" in self.file_sources


def optional(config_file=None):
if not config_file:
Expand Down
1 change: 1 addition & 0 deletions lib/galaxy/dependencies/conditional-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ fs-basespace # type: basespace
fs-azureblob # type: azure
rspace-client>=2.6.1,<3 # type: rspace
huggingface_hub
omero-py #type: omero # Requires manual installation of additional dependencies, see https://omero.readthedocs.io/en/stable/developers/Python.html#omero-python-language-bindings

# Vault backend
hvac
Expand Down
Loading
Loading