Skip to content
Merged
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
5 changes: 4 additions & 1 deletion cirro/sdk/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ def run_analysis(
params=None,
notifications_emails: List[str] = None,
compute_environment: str = None,
resume_dataset_id: str = None
resume_dataset_id: str = None,
source_sample_ids: List[str] = None
) -> str:
"""
Runs this process on one or more input datasets, returns the ID of the newly created dataset.
Expand All @@ -125,6 +126,7 @@ def run_analysis(
It will attempt to re-use the previous output to minimize duplicate work.
Note that Nextflow does not require this parameter, as it will automatically resume
from any previous attempts using a global cache.
source_sample_ids (List[str]): List of sample IDs to use as input for the analysis.

Returns:
dataset_id (str): ID of newly created dataset
Expand Down Expand Up @@ -169,6 +171,7 @@ def run_analysis(
params=RunAnalysisRequestParams.from_dict(params),
notification_emails=notifications_emails,
resume_dataset_id=resume_dataset_id,
source_sample_ids=source_sample_ids,
compute_environment_id=compute_environment.id if compute_environment else None
)
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cirro"
version = "1.10.3"
version = "1.10.4"
description = "CLI tool and SDK for interacting with the Cirro platform"
authors = ["Cirro Bio <support@cirro.bio>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion samples/Interacting_with_files.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"source": [
"from cirro import DataPortal\n",
"\n",
"portal = DataPortal(base_url=\"\")"
"portal = DataPortal()"
]
},
{
Expand Down
Loading