Skip to content
Snippets Groups Projects
Commit 89adb332 authored by Danilo Ferreira de Lima's avatar Danilo Ferreira de Lima
Browse files

Prevent bugfix from messing -j option.

parent d6cef850
No related branches found
No related tags found
2 merge requests!59Interface CrystFEL with Karabo and allow automatic parameter tunning with rcrystfel,!53Train picker arbiter kernel
......@@ -68,7 +68,10 @@ def reparse_fix_comma_mess(l):
final = list()
current_group = list()
for current in res:
if re.match(r"(\d+)", current):
if (len(current_group) > 0
and re.match(r"(\d+)", current)
and re.match(r".*(\d+)$", current_group[-1])
):
current_group += [current]
else:
# flush what was there first
......@@ -303,6 +306,7 @@ class CrystfelRunner(PythonDevice):
.defaultValue(
[
"--pdb=/gpfs/exfel/exp/XMPL/201750/p700000/proc/r0030/hewl.cell",
"-j", "40",
"--highres=1.6",
"--peaks=peakfinder8",
"--threshold=200",
......
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