MCPcopy Create free account
hub / github.com/BioinfoMachineLearning/FlowDock / resolve_dataset_path_dirname

Function resolve_dataset_path_dirname

flowdock/__init__.py:38–44  ·  view source on GitHub ↗

Resolve the dataset path directory name based on the dataset's name. :param dataset: Name of the dataset. :return: Directory name for the dataset path.

(dataset: str)

Source from the content-addressed store, hash-verified

36
37
38def resolve_dataset_path_dirname(dataset: str) -> str:
39 """Resolve the dataset path directory name based on the dataset's name.
40
41 :param dataset: Name of the dataset.
42 :return: Directory name for the dataset path.
43 """
44 return "DockGen" if dataset == "dockgen" else dataset
45
46
47def resolve_method_input_csv_path(method: str, dataset: str) -> str:

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected