Metadata-Version: 2.0
Name: p-tree
Version: 0.1.15
Summary: A program for counting CFUs in petri dishes
Home-page: https://github.com/gpamfilis/p-tree
Author: George Pamfilis
Author-email: gpamfilis@gmail.com
License: apache-2.0
Description-Content-Type: UNKNOWN
Keywords: science microbiology petri colony
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: appnope (==0.1.0)
Requires-Dist: bleach (==2.1.1)
Requires-Dist: cycler (==0.10.0)
Requires-Dist: decorator (==4.1.2)
Requires-Dist: entrypoints (==0.2.3)
Requires-Dist: html5lib (==1.0b10)
Requires-Dist: ipykernel (==4.6.1)
Requires-Dist: ipython (==6.2.1)
Requires-Dist: ipython-genutils (==0.2.0)
Requires-Dist: ipywidgets (==7.0.4)
Requires-Dist: jedi (==0.11.0)
Requires-Dist: Jinja2 (==2.10)
Requires-Dist: jsonschema (==2.6.0)
Requires-Dist: jupyter (==1.0.0)
Requires-Dist: jupyter-client (==5.1.0)
Requires-Dist: jupyter-console (==5.2.0)
Requires-Dist: jupyter-core (==4.4.0)
Requires-Dist: MarkupSafe (==1.0)
Requires-Dist: matplotlib (==2.1.0)
Requires-Dist: mistune (==0.8.1)
Requires-Dist: nbconvert (==5.3.1)
Requires-Dist: nbformat (==4.4.0)
Requires-Dist: networkx (==2.0)
Requires-Dist: notebook (==5.2.1)
Requires-Dist: numpy (==1.13.3)
Requires-Dist: olefile (==0.44)
Requires-Dist: opencv-python (==3.3.0.10)
Requires-Dist: pandas (==0.21.0)
Requires-Dist: pandocfilters (==1.4.2)
Requires-Dist: parso (==0.1.0)
Requires-Dist: pexpect (==4.3.0)
Requires-Dist: pickleshare (==0.7.4)
Requires-Dist: Pillow (==4.3.0)
Requires-Dist: PIMS (==0.4.1)
Requires-Dist: prompt-toolkit (==1.0.15)
Requires-Dist: ptyprocess (==0.5.2)
Requires-Dist: Pygments (==2.2.0)
Requires-Dist: pyparsing (==2.2.0)
Requires-Dist: python-dateutil (==2.6.1)
Requires-Dist: pytz (==2017.3)
Requires-Dist: PyWavelets (==0.5.2)
Requires-Dist: pyzmq (==16.0.3)
Requires-Dist: qtconsole (==4.3.1)
Requires-Dist: scikit-image (==0.13.1)
Requires-Dist: scikit-learn (==0.19.1)
Requires-Dist: scipy (==1.0.0)
Requires-Dist: simplegeneric (==0.8.1)
Requires-Dist: six (==1.11.0)
Requires-Dist: sklearn (==0.0)
Requires-Dist: slicerator (==0.9.8)
Requires-Dist: terminado (==0.6)
Requires-Dist: testpath (==0.3.1)
Requires-Dist: tornado (==4.5.2)
Requires-Dist: traitlets (==4.3.2)
Requires-Dist: wcwidth (==0.1.7)
Requires-Dist: webencodings (==0.5.1)
Requires-Dist: widgetsnbextension (==3.0.7)

# p-tree 0.1.14

## About
```
This package is used to count the CFUs in petri dishes.
In order to use it you must provide it with a shared dropbox link to a directory containing the images in a png format.
Only images must be contained in the directory no subdirectories.
```


### Installation
```
This package requires python==3.6

to install type:

pip install p-tree

or

pip install --upgrade p-tree
```


### Example Script


```python
from p_tree.run import CountColonies

if __name__ == '__main__':
    url = 'https://www.dropbox.com/sh/vq4wb9fd9k1fz49/AADLR3IIgj8lMWs8m9QLzdPoa?dl=1'
    cc = CountColonies(url=url)
    dfs = cc.main()
    print(dfs)
```

# TODO

1. Provide rotate angle option and number of rotations.
2. Accept directory as input and not only dropbox shared link.
3. Save DataFrames to csv.
4. Output analytics such as bell curves (mean and std) for all petries.


