Skip to content
Permalink
d5f9931790
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
29 lines (25 sloc) 709 Bytes
# Behavior: empty values are considered false
controls_only = yes
# Paths
PREFIX_OUTPUT = 2017-02-20
PREFIX_SRC = ../../src
IMAGES = ../z_projection
PIPELINE = $(PREFIX_SRC)/image-processing-pipeline.cpproj
FILELIST = $(PREFIX_OUTPUT)/filelist
# Executables
cellprofiler = cellprofiler
.PHONY: cellprofiler
cellprofiler : $(FILELIST)
$(cellprofiler) \
--pipeline=$(PIPELINE) \
--output-directory=$(PREFIX_OUTPUT) \
--file-list=$(FILELIST)
.PHONY : filelist
filelist : $(FILELIST)
$(FILELIST) : $(IMAGES)
ifneq ($(CLUSTER),)
find $< -type f | sort > $@
else
#find $< -type f -regex '^502[^_]_(J18|I09|H09|N22|E20|M13|K11)' | sort > $@
find $< -type f -regex '.*/502[^_]+_J18_S08.*' | sort > $@
endif