Skip to content

Commit

Permalink
examples: update ignore patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Aug 26, 2019
1 parent a1919d0 commit 910f55b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions examples/convert_txt2tif.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
from skimage.external import tifffile

# File names ending with these strings are ignored
# (these are files related to previous analyses)
ignore_endswith = ['.bmp', '.npy', '.opj', '.png', '.pptx', '.py', '.svg',
'.tif', '.txt', '_RIdist', '_parameter', '_parameter_old',
'_phase', 'n_array', 'n_array_real', '~', ".dat"]
'.tif', '.txt', '_RIdist', '_parameter', '_parameter_2',
'_parameter_3', '_parameter_4', '_parameterdrymass',
'_parameter_old', '_phase', 'n_array', 'n_array_1',
'n_array_drymass1', 'n_array_drymass2', 'n_array_real',
'~', '.dat']
# uncomment this line to keep background hologram files
ignore_endswith += ['_bg']

Expand Down

0 comments on commit 910f55b

Please sign in to comment.