From 6320f66aa408f00c5f29009d252b5f8cad56374e Mon Sep 17 00:00:00 2001 From: esavary Date: Fri, 5 Apr 2024 11:39:29 +0200 Subject: [PATCH] Update src/eddymotion/utils.py Co-authored-by: Oscar Esteban --- src/eddymotion/utils.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/eddymotion/utils.py b/src/eddymotion/utils.py index 6dd53545..1044ccd5 100644 --- a/src/eddymotion/utils.py +++ b/src/eddymotion/utils.py @@ -27,24 +27,6 @@ import numpy as np -class SortingStrategy(Enum): - """ - Enum class representing different sorting strategies. - - Available sorting strategies: - - LINEAR: Sorts the items in a linear order. - - RANDOM: Sorts the items in a random order. - - BVALUE: Sorts the items based on their b-value. - - CENTRALSYM: Sorts the items based on their central symmetry. - """ - - LINEAR = "linear" - RANDOM = "random" - BVALUE = "bvalue" - CENTRALSYM = "centralsym" - - - def linear_action(size, **kwargs): """ Sort the DWI data volume indices linearly