Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor edits to trigger tests #435

Merged
merged 1 commit into from
Jul 8, 2024
Merged
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
2 changes: 2 additions & 0 deletions pathml/preprocessing/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def run_vectra_workflow(
# Store all slides in a SlideDataSet object
dataset = SlideDataset(vectra_list_A + vectra_list_B)

# initialize pipeline
pipe = Pipeline(
[
CollapseRunsCODEX(z=0),
Expand All @@ -54,6 +55,7 @@ def run_vectra_workflow(
]
)

# run pipeline
if use_parallel:
# Initialize a dask cluster using 10 workers. PathML pipelines can be run in distributed mode on
# cloud compute or a cluster using dask.distributed.
Expand Down
Loading