aboutsummaryrefslogtreecommitdiff
path: root/src/gui_ambi.c
AgeCommit message (Collapse)Author
2022-07-06GUI: Invoke programs without pathThomas White
Including the path wasn't working very well. One of the problems is that it prevents the use of a wrapper script for the programs, which is needed for certain environments. This commit just removes the path prefixes altogether.
2021-07-22GUI: Fix logic for ambiguity responseThomas White
2021-07-15GUI: Run all jobs with same CWD as GUI itselfThomas White
This requires changing all the paths to relative ones. Previously, the jobs ran with their CWDs set to the corresponding "result" folder. The trouble is, this breaks everything that uses a relative location: image filenames, mask/satmap files referenced by the geometry, etc. Note that this change also means that the temporary folders ("indexamajig.XXX") are now produced in the top-level working directory. Eventually, a GUI option should be added to allow these folders to be put somewhere better (i.e. somewhere fast). Closes: https://gitlab.desy.de/thomas.white/crystfel/-/issues/44
2021-06-22GUI: Fix paths to streams for merging and ambigatorThomas White
They need to be prefixed with "../" because they are in a different folder.
2021-06-22GUI: Remove old debugging watchpointThomas White
2021-04-01GUI: Wrap filenames in job scripts in quotes, where appropriateThomas White
This makes it work when the filenames contain spaces.
2021-03-01GUI: Add lots of tooltipsThomas White
2021-02-26GUI: Automatically generate new job namesThomas White
2021-02-22Read job progress from written log files, even for local BEThomas White
This simplifies the backends somewhat, and makes them look more similar - e.g. there is now only one routine to find out how far along a merging job is. It has the added bonus of adding a log file for local jobs, which we would've had to add soon anyway.
2021-02-18GUI: Avoid passing a few NULLs to GTKThomas White
2021-02-18SLURM: Submit merging and ambigator jobs via scriptThomas White
2021-02-18GUI: Show ambiguity options box firstThomas White
This makes the GtkNotebook open on the right tab. See the documentation for gtk_notebook_set_current_page()
2021-02-18GUI: Actually run ambigator (local backend only)Thomas White
2021-02-18GUI: Track separately whether ambiguity operation should be usedThomas White
This allows values to be held for both, which is more helpful.
2021-02-17GUI: Re-work local backend plumbingThomas White
A single command line is not expressive enough for at least two cases: process_hkl, which needs to be run two extra times to generate the splits, and ambigator, which needs to have its input streams concatenated first. This also splits out the routine for creating the working folder and writing the notes file.
2021-02-17GUI: Move ambigator parameters to separate structureThomas White
2021-02-17GUI: Plumbing, ready to run ambigator jobThomas White
2021-02-17GUI: Generalise job notes pageThomas White
2021-02-17GUI: Move ambigator options into a GtkNotebookThomas White
2021-02-16GUI: Add ambigator optionsThomas White