forked from braysia/covertrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
braysia
authored and
braysia
committed
Nov 10, 2016
1 parent
779262d
commit 80eadc5
Showing
874 changed files
with
7,297 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,3 +87,7 @@ ENV/ | |
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# Mac OSX | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# covertrace | ||
|
||
API to handle live-cell time-series produced by covertrack. | ||
|
||
|
||
### Installation | ||
``` | ||
git clone https://github.com/braysia/covertrace.git | ||
cd covertrace | ||
python setup.py install | ||
``` | ||
|
||
### Examples | ||
Open `doc/jupyter_examples/demo.ipynb` through jupyter notebook. | ||
|
||
|
||
``` | ||
# Sample Usage | ||
from functools import partial | ||
from covertrace.data_array import Sites | ||
from covertrace import ops_plotter, ops_filter, ops_bool | ||
sites = Sites(parent_folder='data/sample_result/', | ||
subfolders=['Pos005', 'Pos006'], conditions=['IL1B', 'IL1B']) | ||
operation = partial(ops_plotter.plot_tsplot) | ||
sites.set_state(['cytoplasm', 'TRITC', 'mean_intensity']) | ||
sites.iterate(operation) | ||
``` | ||
|
||
|
Empty file.
Oops, something went wrong.