Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Delete trailing spaces at end-of-line #181

Merged
merged 2 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ Installation Guide
Where to get nmrglue
--------------------

Downloads for all platforms are available at
Downloads for all platforms are available at
`<https://github.com/jjhelmus/nmrglue/releases>`_. Tar files are available
for UNIX-like systems (Linux or OSX) and a binary installer for Windows.

Requirements
------------

nmrglue requires `numpy <http://numpy.scipy.org>`_ and
`scipy <http://www.scipy.org>`_ to be installed. Please see the install
nmrglue requires `numpy <http://numpy.scipy.org>`_ and
`scipy <http://www.scipy.org>`_ to be installed. Please see the install
instructions for these packages for details.

Unix/OSX Installation
---------------------

After installing the above dependencies download and extract the source
After installing the above dependencies download and extract the source
distribution and run::

$ python setup.py install
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ b. Redistributions in binary form must reproduce the above copyright
distribution.


c. Neither the name of the author nor the names of contributors may
be used to endorse or promote products derived from this software
c. Neither the name of the author nor the names of contributors may
be used to endorse or promote products derived from this software
without specific prior written permission.


Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
=======
nmrglue
nmrglue
=======

What is nmrglue?
Expand All @@ -25,13 +25,13 @@ nmrglue has the ability to read, write and convert between a number of common
NMR file formats including Varian, Bruker, NMRPipe, and Sparky files. The
files, which are represented in python as dictionaries of spectral parameters
and Numpy array objects, can be easily examined, modified and processed as
desired.
desired.

nmrglue provides a number of common functions for processing NMR data such as
apodization, spectral shifting, Fourier and other transformations, baseline
smoothing and flattening, and linear prediction. In addition new processing
schemes can be implemented easily using the nmrglue provided functions and the
multitude of numerical routines provided by the Numpy and Scipy packages.
multitude of numerical routines provided by the Numpy and Scipy packages.

When used in conjunction with the matplotlib (or other) python plotting
library nmrglue can be used to create publication quality figures of NMR
Expand Down
28 changes: 14 additions & 14 deletions TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ nmrglue
- sparky_nd object? or dimension agnostic functions?
- spinev module?

gui?
gui?
----
- gui module with common gui functions?

Expand All @@ -45,19 +45,19 @@ test

Module Notes
------ ------
fileiobase Tested
glue Not currently imported
table
proc_base Partially tested with pipe_proc test
fileiobase Tested
glue Not currently imported
table
proc_base Partially tested with pipe_proc test
proc_bl Partially tested with pipe_proc test
proc_lp Partially tested with pipe_proc test
analysisbase No tests needed
helpers
leastsqbound
lineshapes1d
linesh
peakpick
segmentation
analysisbase No tests needed
helpers
leastsqbound
lineshapes1d
linesh
peakpick
segmentation
misc

- Check coverage on current tests, get to 80%+
Expand All @@ -67,9 +67,9 @@ misc
doc
---

- Rewrite tutorial including a mention of analysis modules.
- Rewrite tutorial including a mention of analysis modules.
- pipe_proc: Add References to low level function / better description
- proc_base : Additional documentation, indication which functions work on
- proc_base : Additional documentation, indication which functions work on
arbitrary dimensional data.
- proc_bl : Flesh out the sol_* functions?
- helpers : Better documentation, examples?
Expand Down
2 changes: 1 addition & 1 deletion doc/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Instructions

3. Run ``make html``. in this directory.

The html documentation should be stored in the build/html directory.
The html documentation should be stored in the build/html directory.


ReadTheDocs
Expand Down
44 changes: 22 additions & 22 deletions doc/source/_static/scipy.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ div.body p, div.body dd, div.body li {
line-height: 125%;
}

ul.simple {
ul.simple {
margin-top: 0;
margin-bottom: 0;
padding-top: 0;
Expand Down Expand Up @@ -39,22 +39,22 @@ div.sphinxsidebarwrapper p.topless {
}

/**
* Hide dummy toctrees
* Hide dummy toctrees
*/

ul {
ul {
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}
ul li {
ul li {
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}
ul li a.reference {
ul li a.reference {
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
Expand All @@ -64,24 +64,24 @@ ul li a.reference {
/**
* Make high-level subsections easier to distinguish from top-level ones
*/
div.body h3 {
div.body h3 {
background-color: transparent;
}

div.body h4 {
div.body h4 {
border: none;
background-color: transparent;
}

/**
/**
* Scipy colors
*/

body {
body {
background-color: rgb(100,135,220);
}

div.document {
div.document {
background-color: rgb(230,230,230);
}

Expand Down Expand Up @@ -122,27 +122,27 @@ div.sphinxsidebar ul.want-points {
white-space: nowrap;
}

/**
* Extra admonitions
/**
* Extra admonitions
*/

div.tip {
background-color: #ffffe4;
border: 1px solid #ee6;
}

div.plot-output {
div.plot-output {
clear-after: both;
}

div.plot-output .figure {
div.plot-output .figure {
float: left;
text-align: center;
margin-bottom: 0;
padding-bottom: 0;
}

div.plot-output .caption {
div.plot-output .caption {
margin-top: 2;
padding-top: 0;
}
Expand All @@ -151,11 +151,11 @@ div.plot-output p.admonition-title {
display: none;
}

div.plot-output:after {
content: "";
display: block;
height: 0;
clear: both;
div.plot-output:after {
content: "";
display: block;
height: 0;
clear: both;
}


Expand All @@ -175,12 +175,12 @@ table.field-list th {
padding-left: 5px;
}

table.field-list {
table.field-list {
border-collapse: separate;
border-spacing: 10px;
}

/**
/**
* Styling for footnotes
*/

Expand Down
Loading