Skip to content

Commit

Permalink
Merge pull request #19 from pcmasuzzo/fix_icy_bug
Browse files Browse the repository at this point in the history
Fix icy bug
  • Loading branch information
simleo authored May 5, 2017
2 parents a344012 + 1f55360 commit 782dd65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
.pylintrc

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
8 changes: 4 additions & 4 deletions biotracks/readfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,10 @@ def read_file(f, track_dict):
f = name + '_clean.csv'
print('New file to work with: {}'.format(f))
(objects, links) = read_icy(f)
break

(objects, links) = read_cellprofiler(f, track_dict)
print('Successfully parsed a CellProfiler CSV file...')
else:
(objects, links) = read_cellprofiler(f, track_dict)
print('Successfully parsed a CellProfiler CSV file...')
break


# show objects and links previews
Expand Down

0 comments on commit 782dd65

Please sign in to comment.