@@ -47,18 +47,18 @@ class DownloadWorkflow:
4747 Can also download its Singularity container image if required.
4848
4949 Args:
50- pipeline (Optional[ str] ): A nf-core pipeline name.
51- revision (Optional[Union[ tuple[str], str]] ): The workflow revision(s) to download, like `1.0` or `dev` . Defaults to None.
52- outdir (Optional[ Path] ): Path to the local download directory. Defaults to None.
53- compress_type (Optional[ str] ): Type of compression for the downloaded files. Defaults to None.
50+ pipeline (str | None ): A nf-core pipeline name.
51+ revision (tuple[str] | str | None ): The workflow revision(s) to download, like `1.0` or `dev` . Defaults to None.
52+ outdir (Path | None ): Path to the local download directory. Defaults to None.
53+ compress_type (str | None ): Type of compression for the downloaded files. Defaults to None.
5454 force (bool): Flag to force download even if files already exist (overwrite existing files). Defaults to False.
5555 platform (bool): Flag to customize the download for Seqera Platform (convert to git bare repo). Defaults to False.
56- download_configuration (Optional[ str] ): Download the configuration files from nf-core/configs. Defaults to None.
57- additional_tags (Optional[Union[ list[str], str]] ): Specify additional tags to add to the downloaded pipeline. Defaults to None.
56+ download_configuration (str | None ): Download the configuration files from nf-core/configs. Defaults to None.
57+ additional_tags (list[str] | str | None ): Specify additional tags to add to the downloaded pipeline. Defaults to None.
5858 container_system (str): The container system to use (e.g., "singularity"). Defaults to None.
59- container_library (Optional[Union[ tuple[str], str]] ): The container libraries (registries) to use. Defaults to None.
60- container_cache_utilisation (Optional[ str] ): If a local or remote cache of already existing container images should be considered. Defaults to None.
61- container_cache_index (Optional[ Path] ): An index for the remote container cache. Defaults to None.
59+ container_library (tuple[str] | str | None ): The container libraries (registries) to use. Defaults to None.
60+ container_cache_utilisation (str | None ): If a local or remote cache of already existing container images should be considered. Defaults to None.
61+ container_cache_index (Path | None ): An index for the remote container cache. Defaults to None.
6262 parallel (int): The number of parallel downloads to use. Defaults to 4.
6363 hide_progress (bool): Flag to hide the progress bar. Defaults to False.
6464 """
0 commit comments