Skip to content
Snippets Groups Projects
Commit cdd9fdba authored by leprob001's avatar leprob001
Browse files

feat: referencePosition and referencePositionEnd are now checked for errors in combinations table

parent 485b0f95
No related branches found
No related tags found
No related merge requests found
327
\ No newline at end of file
328
\ No newline at end of file
......@@ -29,9 +29,18 @@ if any(isempty(pCombinationsTable.trackingMethod)) ...
return;
end
if any(cellfun(@(x) length(strsplit(x)), pCombinationsTable.referencePosition) ~= 2)
message = '(Reference) Position START column contains at least one error. Please double check this column.';
return;
end
if any(cellfun(@(x) length(strsplit(x)), pCombinationsTable.referencePositionEnd) ~= 2)
message = '(Reference) Position END column contains at least one error. Please double check this column.';
return;
end
success = true;
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment