SAXS Assistant: Automated analysis of SAXS data including Guinier, PDDF, and ML-based Dmax prediction
Project description
SAXS Assistant
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.
Installation
Standard
pip install saxs-assistant
***For Google Colab use
!pip install saxs-assistant
With optional music playback (for local environments only- not for colab)
pip install saxs-assistant[music]
Quick Start
1. Analyze Your Data
from saxs_assistant 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
Optional arguments
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)
)
2. Generate an Input File
Use this if you don’t already have a dataframe:
from saxs_assistant 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.
3. Combine Multiple Sessions (Optional)
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/
Expected Input Format
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.
Output
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
Optional: Music Playback
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)
Example Use Case
# 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")
Dependencies
Automatically installed via setup.py.
To install manually:
pip install -r requirements.txt
For music playback:
pip install playsound
License
MIT License
Acknowledgments
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
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file saxs_assistant-0.1.4.tar.gz.
File metadata
- Download URL: saxs_assistant-0.1.4.tar.gz
- Upload date:
- Size: 24.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
802640c8b9845f9ebefd84aa696a9b7b5752c92fa3f9ac5702aceaefad4c1b0e
|
|
| MD5 |
768224a134c52008d2b6201359613f12
|
|
| BLAKE2b-256 |
e0ee0d6aacd2803d8582e6ca1802d3948a777e6f1c5b1460ee30002f1dfade4f
|
File details
Details for the file saxs_assistant-0.1.4-py3-none-any.whl.
File metadata
- Download URL: saxs_assistant-0.1.4-py3-none-any.whl
- Upload date:
- Size: 24.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
041a5f727d9205ac38c15f6edb77ca44236049981b438db929a2a89beb2c433c
|
|
| MD5 |
dff2a1d6c48246d41d32ab8967313998
|
|
| BLAKE2b-256 |
d1ea6c3c8e5bb94cf04a16c5968893fe4515a6f564f378598aced3bae6a76491
|