aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/index.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c
index 94159957..1c3441a6 100644
--- a/libcrystfel/src/index.c
+++ b/libcrystfel/src/index.c
@@ -258,6 +258,10 @@ IndexingMethod *build_indexer_list(const char *str)
/* ReAx doesn't need any cell check */
list[++nmeth] = set_raw(defaults(INDEXING_REAX));
+ } else if ( strcmp(methods[i], "none") == 0) {
+ list[++nmeth] = INDEXING_NONE;
+ return list;
+
} else if ( strcmp(methods[i], "raw") == 0) {
list[nmeth] = set_raw(list[nmeth]);