Skip to content

Commit

Permalink
Update common.smk
Browse files Browse the repository at this point in the history
  • Loading branch information
akhanf authored Sep 6, 2024
1 parent 06614e8 commit 88fb25d
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -158,29 +158,6 @@ def get_qc_targets():
return targets


def get_save_work_targets():
targets = []
if config["save_work"]:
for i in range(len(datasets)):
targets.extend(
expand_bids(
root="bids/work",
subject="{subject}",
datatype="micr",
sample="{sample}",
acq="{acq}",
desc="raw",
suffix="SPIM.zarr",
expand_kwargs=dict(
subject=datasets.loc[i, "subject"],
sample=datasets.loc[i, "sample"],
acq=datasets.loc[i, "acq"],
),
)
)
return targets


def dataset_is_remote(wildcards):
return is_remote_gcs(Path(get_dataset_path(wildcards)))

Expand Down

0 comments on commit 88fb25d

Please sign in to comment.