https://github.com/danporter/jana2006_analysis
Python functions for reading refinement data from Jana2006
https://github.com/danporter/jana2006_analysis
crystallography xray-crystallography xray-diffraction
Last synced: about 1 year ago
JSON representation
Python functions for reading refinement data from Jana2006
- Host: GitHub
- URL: https://github.com/danporter/jana2006_analysis
- Owner: DanPorter
- Created: 2019-08-12T08:22:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-12T09:08:00.000Z (almost 7 years ago)
- Last Synced: 2025-02-08T09:45:37.833Z (over 1 year ago)
- Topics: crystallography, xray-crystallography, xray-diffraction
- Language: Python
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jana2006_Analysis
Python functions for reading refinement data from Jana2006
**Version 0.1**
By Dan Porter, Diamond Light Source
2019
#### How to use:
- Start your refinement in Jana2006
- Find the *.m40 file in the refinement directory
- in a python console:
```python
import Jana2006_Analysis as jana
ref = jana.Refine("refinementfile.m40")
ref.update()
```
- This will print the current refinement results and save them to a text file in your refinement table
- You can also create a latex refinement table:
```python
ref.create_table()
```