Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 18 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-12T09:08:00.000Z (over 5 years ago)
- Last Synced: 2024-10-07T10:10:48.583Z (about 1 month 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()
```