Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
braysia authored and braysia committed Nov 10, 2016
1 parent 779262d commit 80eadc5
Show file tree
Hide file tree
Showing 874 changed files with 7,297 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,7 @@ ENV/

# Rope project settings
.ropeproject

# Mac OSX
.DS_Store

30 changes: 30 additions & 0 deletions README.md
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 added covertrace/__init__.py
Empty file.
Loading

0 comments on commit 80eadc5

Please sign in to comment.