Skip to content

Commit

Permalink
add assert input volume
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudbore committed Jul 22, 2024
1 parent b04dac3 commit df68d0d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/scil_surface_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ def main():
args = parser.parse_args()
logging.getLogger().setLevel(logging.getLevelName(args.verbose))

assert_inputs_exist(parser, [], [args.in_labels, args.in_mask])
assert_inputs_exist(parser, [], [args.in_labels,
args.in_mask,
args.in_volume])
assert_outputs_exist(parser, args, args.out_surface)

masks = []
Expand Down

0 comments on commit df68d0d

Please sign in to comment.