SAXS Assistant is a plug-and-play Python package for automating SAXS (Small-Angle X-ray Scattering) data analysis. It streamlines the entire process — from file preparation to result visualization — with a single command.
pip install saxs-assistant
***For Google Colab use
!pip install saxs-assistant pip install saxs-assistant[music]from saxs_assistant.runner import analyze_and_plot_all
plot_data, results = analyze_and_plot_all("path/to/input_file.xlsx")This will:
- Run analysis on all entries in the input file
- Save plots and results in a
return/folder - Print status updates and return:
plot_data: dictionary for visualizationsresults: pandas dataframe of SAXS outputs- solved_only: pandas dataframe of SAXS outputs without any files that have "Fatal Flag" entry or missing Pr/Guinier Rg -unsolved_only: Dataframe having only the files that werent solved -plots folder: This has the raw graph data for the solved files will be saved in the same directory to where the PDF summary plots are solved
analyze_and_plot_all(
df_path="input_file.xlsx",
start_index=50, # Start analysis at row 50 of the input file
end_index=100, # End at row 100 (non-inclusive)
output_dir="my_results", # Override output folder
music=True # Play background music (if installed locally)
)Use this if you don’t already have a dataframe:
from saxs_assistant.runner import prepare_dataframe
df = prepare_dataframe(folder_path="path/to/folder", angular_unit="1/A")This scans your folder and creates an Excel input file containing:
- File names and paths
- Angular unit (must be
'1/A'or'1/nm')
Saved as: input_df_<date>.xlsx in the parent folder.
If you run analyze_and_plot_all() multiple times, each run will create folders like:
return/return_1/return_2/
...in the same parent directory.
To merge the results:
from saxs_assistant.organizer import combine_sessions
combine_sessions(base_path="path/to/folder")This will:
- Combine all
results.xlsxandplot_data.joblibinto a single file - Save them as:
final_results.xlsxfinal_results_Plots.joblib
- Move original
return*folders into a subdirectory calledpartials/
Your Excel input file must contain:
file name: Name of each SAXS filepath: Folder containing the fileAngular unit: Either1/Aor1/nm
You can generate this automatically using prepare_dataframe() or create it manually.
All outputs are stored in a /return/ folder unless otherwise specified:
results.xlsx: All extracted parametersplot_data.joblib: Data dictionary for visualizationsummary_plots.pdf: Auto-generated plots of good fitsflagged_plots.pdf: Highlighted issues or low-quality data
Add a little ambiance during analysis:
analyze_and_plot_all("input.xlsx", music=True)Note:
- Only works on local machines
- Automatically skipped in cloud environments (e.g., Colab)
# Step 1: Prepare input
prepare_dataframe(folder_path="saxs_data", angular_unit="1/A")
# Step 2: Run analysis
analyze_and_plot_all("input_df_Jun_25_25.xlsx", music=True)
# (optional) Step 3: Combine results from multiple sessions
combine_sessions(base_path="saxs_data")Automatically installed via setup.py.
To install manually:
pip install -r requirements.txtFor music playback:
pip install playsoundMIT License
Developed for efficient SAXS exploration — may it help others find structure in the scatter. SAXS Assisant does not offer warranty-- use at your own risk and evaluate the results carefully. If you use SAXS Assistant Please Cite RAW and BIFT, and Franke et. al
Hansen, S. Journal of Applied Crystallography (2000) 33, 1415-1421. DOI: 10.1107/S0021889800012930
https://doi.org/10.1107/S1600576723011019 https://doi.org/10.1107/S0021889809023863 https://doi.org/10.1016/j.bpj.2018.04.018