Skip to content

Commit

Permalink
- move Trace, Correlation, and Fit to separate files
Browse files Browse the repository at this point in the history
- import Trace, Correlation, and Fit in __init__ to improve scripting (#139)
  • Loading branch information
Paul Müller committed Dec 22, 2015
1 parent d49a9af commit 6a7b863
Show file tree
Hide file tree
Showing 14 changed files with 685 additions and 661 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Getting started

Installation
------------
Installers for PyCorrFit are available at the [release page](https://github.com/FCS-analysis/PCorrFit/releases). If you have Python installed you can install PyCorrFit, including its scripting functionalities, with `pip install pycorrfit[GUI]`. For more information, [go here](https://github.com/FCS-analysis/PyCorrFit/wiki/Running-from-source).
Installers for PyCorrFit are available at the [release page](https://github.com/FCS-analysis/PyCorrFit/releases). If you have Python installed you can install PyCorrFit, including its scripting functionalities, with `pip install pycorrfit[GUI]`. More information is available in the [wiki](https://github.com/FCS-analysis/PyCorrFit/wiki/Running-from-source).

Documentation
-------------
Expand Down
5 changes: 4 additions & 1 deletion pycorrfit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
from . import models
from . import openfile
from . import readfiles
from . import fcs_data_set

from .correlation import Correlation
from .fit import Fit
from .trace import Trace

__version__ = meta.get_version()
__author__ = u"Paul Müller"
Expand Down
Loading

0 comments on commit 6a7b863

Please sign in to comment.