Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan DeKraker committed Dec 16, 2024
1 parent d128ba8 commit 71c1205
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions hippunfold/workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ template_modality = False


# set the lists used for output spaces
if (
config["modality"] == "T1w"
or "T1w" in config["output_spaces"]
):
if config["modality"] == "T1w" or "T1w" in config["output_spaces"]:
ref_spaces.append("T1w")
crop_ref_spaces.append("cropT1w")
limit_to_list.add("T1w")
if (
config["modality"] == "T2w"
and "native" in config["output_spaces"]
config["modality"] == "T2w" and "native" in config["output_spaces"]
) or "T2w" in config["output_spaces"]:
ref_spaces.append("T2w")
crop_ref_spaces.append("cropT2w")
Expand Down

0 comments on commit 71c1205

Please sign in to comment.