Skip to content

Commit 6e5ddcb

Browse files
authored
Merge pull request #23 from Topp-Roots-Lab/development
Improve documentation and add basic tests for scaling
2 parents 870bddd + 3231dce commit 6e5ddcb

File tree

8 files changed

+286
-182
lines changed

8 files changed

+286
-182
lines changed

CONTRIBUTING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Types of Contributions
1515
Report Bugs
1616
~~~~~~~~~~~
1717

18-
Report bugs at https://github.com/tparkerd/rawtools/issues.
18+
Report bugs at https://github.com/Topp-Roots-Lab/python-rawtools/issues.
1919

2020
If you are reporting a bug, please include:
2121

@@ -45,7 +45,7 @@ articles, and such.
4545
Submit Feedback
4646
~~~~~~~~~~~~~~~
4747

48-
The best way to send feedback is to file an issue at https://github.com/tparkerd/rawtools/issues.
48+
The best way to send feedback is to file an issue at https://github.com/Topp-Roots-Lab/python-rawtools/issues.
4949

5050
If you are proposing a feature:
5151

@@ -103,7 +103,7 @@ Before you submit a pull request, check that it meets these guidelines:
103103
your new functionality into a function with a docstring, and add the
104104
feature to the list in README.rst.
105105
3. The pull request should work for Python 3.5, 3.6, 3.7 and 3.8, and for PyPy. Check
106-
https://travis-ci.com/tparkerd/rawtools/pull_requests
106+
https://travis-ci.com/Topp-Roots-Lab/python-rawtools/pull_requests
107107
and make sure that the tests pass for all supported Python versions.
108108

109109
Tips

HISTORY.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
History
33
=======
44

5+
0.3.0 (2021-07-18)
6+
------------------
7+
8+
Added
9+
*****
10+
11+
* License
12+
* Basic tests on core functionality for scaling data
13+
14+
Changed
15+
*******
16+
17+
* Updated URL for any references to GitHub repo
18+
* Updated docstring header for `raw2img` module
19+
* Updated README to be more descriptive
20+
21+
522
0.2.0 (2021-01-04)
623
------------------
724

LICENSE

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2021, Topp Lab, Donald Danforth Plant Science Center
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
3. Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.rst

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,38 @@
1-
=========
1+
22
RAW Tools
33
=========
44

5+
Utility library for consuming and manipulating x-ray volume data in ``.raw`` format.
56

7+
Features
8+
--------
69

710

11+
* Convert float32, uint16, and uint8 versions of ``.raw`` XRT volume data
12+
* Extract image slices from ``.raw`` files
13+
* Read, parse, and generate metadata files (\ ``.dat``\ ) for XRT data
14+
* Convert proprietary ``.nsihdr`` files into ``.raw`` format (Windows only). Batch conversion supported as CLI and minimal GUI.
15+
* Generate previews of XRT volumes for quality control (e.g., maximum density projections, midslice extraction, etc.)
816

17+
Planned Features
18+
----------------
919

10-
Utility library for consuming and manipulating x-ray data in RAW format
1120

21+
* Generate dummy ``.raw`` files for testing downstream pipelines
22+
* Batch conversion of ``.nsihdr`` on Linux systems
23+
* Density adjustment (similar to automated adjustment MATLAB scripts for ``rootseg``\ )
1224

25+
Related Projects
26+
----------------
1327

14-
Features
15-
--------
1628

17-
* TODO
29+
* `xrcap <https://github.com/Topp-Roots-Lab/3d-root-crown-analysis-pipeline>`_\ : root crown image analysis pipeline
30+
* `DyanmicRoots <https://github.com/Topp-Roots-Lab/DynamicRoots>`_\ : tool for reconstructing and analyzing the growth of a plant root system
31+
* TopoRoot (\ *tentative name*\ )
32+
* `rootseg <https://github.com/Topp-Roots-Lab/rootseg>`_\ : ML-based segmentation for soil rich samples
33+
* `xrt-dmt <https://github.com/Topp-Roots-Lab/xrt-dmt>`_\ : data management tool for tracking and archiving XRT (meta)data
1834

1935
Credits
2036
-------
2137

22-
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
23-
24-
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
25-
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
38+
This package was created with `Cookiecutter <https://github.com/audreyr/cookiecutter-pypackage>`_ and the `audreyr/cookiecutter-pypackage <https://github.com/audreyr/cookiecutter-pypackage>`_ project template.

0 commit comments

Comments
 (0)