Skip to content

Commit fce4c5a

Browse files
committed
Replaced old examples and documentation.
Updated prep tools, and added makesdist script. Updated licenses. More sensible default values for command-line tool. Improved interface for creating and interrogating model covariance. Improved automated qmax detection with forced oversampling, and a new exception. Qmax now defaults to using the reported value, but using automatic value added as keyword. Deleted Lorentzian from repository, since it was never fully implemented. Deleted various obsolete test code. All other changes are minor or superficial.
1 parent 0cbb4f9 commit fce4c5a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+22411
-29250
lines changed

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,3 @@ nosetests.xml
4242
# version information
4343
setup.cfg
4444
/diffpy/srmise/version.cfg
45-
46-
# Any auxiliary files in documentation
47-
/diffpy/srmise/documentation

INSTALL.txt

-88
This file was deleted.

LICENSE.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ program by citing the following paper in your publication:
55
L. Granlund, S.J.B. Billinge, P.M. Duxbury, Algorithm for
66
systematic peak extraction from atomic pair distribution
77
functions, Acta Crystallographica A 71(4), ???-??? (2015).
8+
doi:10.1107/S2053273315005276
89

9-
Copyright 2015, Board of Trustees of Michigan State University
10+
Copyright 2014-2015, Board of Trustees of Michigan State University
1011

1112
For more information please visit the diffpy web-page at
1213
http://www.diffpy.org

LICENSE_PDFgui.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SrMise incorporates source code from the PDFgui program in the file
1+
SrMise incorporates source code from diffpy.pdfgui in the file
22
pdfdataset.py. The PDFgui license is reproduced in full below.
33
===================================================================
44

README.rst

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
diffpy.srmise
2+
========================================================================
3+
4+
Tool for unbiased peak extraction from atomic pair distribution functions.
5+
6+
The diffpy.srmise package is an implementation of the `ParSCAPE algorithm
7+
<https://dx.doi.org/10.1107/S2053273315005276>`_ for peak extraction from
8+
atomic pair distribution functions (PDFs). It is designed to function even
9+
when *a priori* knowledge of the physical sample is limited, utilizing the
10+
Akaike Information Criterion (AIC) to estimate whether peaks are
11+
statistically justified relative to alternate models. Three basic use cases
12+
are anticipated for diffpy.srmise. The first is peak fitting a user-supplied
13+
collections of peaks. The second is peak extraction from a PDF with no (or
14+
only partial) user-supplied peaks. The third is an AIC-driven multimodeling
15+
analysis where the output of multiple diffpy.srmise trials are ranked.
16+
17+
The framework for peak extraction defines peak-like clusters within the data,
18+
extracts a single peak within each cluster, and iteratively combines nearby
19+
clusters while performing a recursive search on the residual to identify
20+
occluded peaks. Eventually this results in a single global cluster
21+
containing many peaks fit over all the data. Over- and underfitting are
22+
discouraged by use of the AIC when adding or removing (during a pruning step)
23+
peaks. Termination effects, which can lead to physically spurious peaks in
24+
the PDF, are incorporated in the mathematical peak model and the pruning step
25+
attempts to remove peaks which are fit better as termination ripples due to
26+
another peak.
27+
28+
Where possible, diffpy.srmise provides physically reasonable default values
29+
for extraction parameters. However, the PDF baseline should be estimated by
30+
the user before extraction, or by performing provisional peak extraction with
31+
varying baseline parameters. The package defines a linear (crystalline)
32+
baseline, arbitrary polynomial baseline, a spherical nanoparticle baseline,
33+
and an arbitrary baseline interpolated from a list of user-supplied values.
34+
In addition, PDFs with accurate experimentally-determined uncertainties are
35+
necessary to provide the most reliable results, but historically such PDFs
36+
are rare. In the absence of accurate uncertainties an ad hoc uncertainty
37+
must be specified.
38+
39+
For more information about the diffpy.srmise library, see the users manual at
40+
http://diffpy.github.io/diffpy.srmise.
41+
42+
REQUIREMENTS
43+
------------------------------------------------------------------------
44+
45+
The diffpy.srfit package requires Python 2.6 or 2.7 and the following software:
46+
47+
* ``setuptools`` - software distribution tools for Python
48+
* ``NumPy`` - numerical mathematics and fast array operations for Python
49+
* ``SciPy`` - scientific libraries for Python
50+
* ``matplotlib`` - python plotting library
51+
52+
On Ubuntu Linux, the required software can easily be installed using
53+
the system package manager::
54+
55+
sudo apt-get install \
56+
python-setuptools python-numpy python-scipy python-matplotlib
57+
58+
For Mac OS X systems with the MacPorts package manager, the required
59+
software can be installed with ::
60+
61+
sudo port install \
62+
python27 py27-setuptools py27-numpy py27-scipy py27-matplotlib
63+
64+
When installing for MacPorts, make sure the MacPorts bin directory is the first
65+
in the system PATH and that python27 is selected as the default Python version
66+
in MacPorts::
67+
68+
sudo port select --set python python27
69+
70+
For Windows systems, it is recommended to install all dependencies using
71+
prebuilt binaries. Visit http://www.scipy.org and http://www.matplotlib.org
72+
for instructions. Alternately, install a full Python distribution such as
73+
Python(x,y) or Enthought Canopy which already include the required
74+
components.
75+
76+
INSTALLATION
77+
------------------------------------------------------------------------
78+
79+
The simplest way to obtain diffpy.srmise on Unix, Linux, and Mac systems is
80+
using ``easy_install`` to download and install the latest release from
81+
`Python Package Index <https://pypi.python.org>`_ ::
82+
83+
sudo easy_install diffpy.srmise
84+
85+
If you prefer to install from sources, make sure all required software packages
86+
are in place and then run ::
87+
88+
sudo python setup.py install
89+
90+
This installs diffpy.srmise for all users in the default system location. If
91+
administrator (root) access is not available, see the usage info from
92+
``python setup.py install --help`` for options to install to user-writable
93+
directories.
94+
95+
To install on Windows run either of the commands above omitting ``sudo``.
96+
While diffpy.srmise will run on Windows, note that Windows is not currently
97+
supported in the official DiffPy-CMI release containing all diffpy
98+
subpackages.
99+
100+
101+
DEVELOPMENT
102+
------------------------------------------------------------------------
103+
104+
diffpy.srmise is open-source software developed with support of the Center of
105+
Research Excellence in Complex Materials at Michigan State University, in
106+
cooperation with the DiffPy-CMI complex modeling initiative at the Brookhaven
107+
National Laboratory. The diffpy.srmise sources are hosted at
108+
https://github.com/diffpy/diffpy.srmise.
109+
110+
Feel free to fork the project and contribute. To install diffpy.srmise in a
111+
development mode, with its sources being directly used by Python rather than
112+
copied to a package directory, use ::
113+
114+
python setup.py develop --user
115+
116+
117+
ACKNOWLEDGEMENT
118+
------------------------------------------------------------------------
119+
120+
The source code of *pdfdataset.py* was derived from diffpy.pdfgui.
121+
122+
123+
CONTACTS
124+
------------------------------------------------------------------------
125+
126+
For more information on diffpy.srmise please visit the project web-page
127+
128+
http://www.diffpy.org
129+
130+
or email Prof. Simon Billinge at [email protected].

devutils/makesdist

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#!/usr/bin/env python
2+
3+
'''Create source distribution tar.gz archive, where each file belongs
4+
to a root user and modification time is set to the git commit time.
5+
'''
6+
7+
import sys
8+
import os
9+
import subprocess
10+
import time
11+
import glob
12+
import tarfile
13+
14+
BASEDIR = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
15+
sys.path.insert(0, BASEDIR)
16+
17+
from setup import versiondata
18+
timestamp = versiondata.getint('DEFAULT', 'timestamp')
19+
20+
print 'Run "setup.py sdist --formats=tar"',
21+
cmd_sdist = [sys.executable] + 'setup.py sdist --formats=tar'.split()
22+
ec = subprocess.call(cmd_sdist, cwd=BASEDIR, stdout=open(os.devnull, 'w'))
23+
if ec: sys.exit(ec)
24+
print "[done]"
25+
26+
tarname = max(glob.glob(BASEDIR + '/dist/*.tar'), key=os.path.getmtime)
27+
28+
tfin = tarfile.open(tarname)
29+
tfout = tarfile.open(tarname + '.gz', 'w:gz')
30+
31+
def fixtarinfo(tinfo):
32+
tinfo.uid = tinfo.gid = 0
33+
tinfo.uname = tinfo.gname = 'root'
34+
tinfo.mtime = timestamp
35+
tinfo.mode &= ~0o022
36+
return tinfo
37+
38+
39+
print 'Filter %s --> %s.gz' % (2 * (os.path.basename(tarname),)),
40+
for ti in tfin:
41+
tfout.addfile(fixtarinfo(ti), tfin.extractfile(ti))
42+
os.remove(tarname)
43+
print "[done]"

prep.py devutils/prep.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,25 @@ def scrubeol(directory, filerestr):
5858

5959
if __name__ == "__main__":
6060

61+
# Temporarily add examples to path
62+
lib_path = os.path.abspath(os.path.join('..','doc','examples'))
63+
sys.path.append(lib_path)
64+
6165
### Testing examples
6266
examples = Test()
63-
from diffpy.srmise.applications.examples import C60, caffeine, SrTiO3_qmax26, C60multiextract, C60multimodel
64-
examples.test(C60.run, plot=False)
65-
examples.test(caffeine.run, plot=False)
66-
examples.test(SrTiO3_qmax26.run, plot=False)
67-
examples.test(C60multiextract.run, plot=False)
68-
examples.test(C60multimodel.main, ['--report', '--savepwa'])
69-
67+
import Ag_singlepeak, Ag_multiplepeaks, TiO2_parameterdetail, TiO2_initialpeaks, C60_multimodelextraction, C60_multimodelanalysis
68+
examples.test(Ag_singlepeak.run, plot=False)
69+
examples.test(Ag_multiplepeaks.run, plot=False)
70+
examples.test(TiO2_parameterdetail.run, plot=False)
71+
examples.test(TiO2_initialpeaks.run, plot=False)
72+
examples.test(C60_multimodelextraction.run, plot=False)
73+
examples.test(C60_multimodelanalysis.run, plot=False)
7074
examples.report()
7175

7276
### Convert output of example files to Unix-style endlines for sdist.
7377
if os.linesep != '\n':
7478
print "==== Scrubbing Endlines ===="
7579
# All *.srmise and *.pwa files in examples directory.
76-
scrubeol("diffpy/srmise/applications/examples", r".*(\.srmise|\.pwa)")
80+
scrubeol("../doc/examples/output", r".*(\.srmise|\.pwa)")
7781

7882

diffpy/srmise/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
from basefunction import BaseFunction
2323
from dataclusters import DataClusters
24-
from modelcluster import ModelCluster
24+
from modelcluster import ModelCluster, ModelCovariance
2525
from modelparts import ModelPart, ModelParts
2626
from pdfdataset import PDFDataSet
2727
from pdfpeakextraction import PDFPeakExtraction

diffpy/srmise/applications/examples/C60.py

-36
This file was deleted.

0 commit comments

Comments
 (0)