Project

General

Profile

1 235 aaronmk
os = $(shell uname)
2 224 aaronmk
3 235 aaronmk
SED = sed -$(if $(filter Darwin,$(os)),E,r)
4
5 240 aaronmk
#####
6 224 aaronmk
7 240 aaronmk
all: _not_file misc
8 197 aaronmk
	$(MAKE) plots
9 198 aaronmk
	./join VegX VegBank
10
	./join VegX VegBIEN
11 199 aaronmk
	./review
12 150 aaronmk
13 223 aaronmk
.SUFFIXES:
14
15 235 aaronmk
_not_file:
16
.PHONY: _not_file
17 188 aaronmk
18 240 aaronmk
misc = schemas/vegbien.sql schemas/vegbien_empty.sql VegX-VegBIEN.organisms.csv
19
20 199 aaronmk
all =\
21
$(wildcard for_review/*.csv) \
22
$(filter-out VegX-% VegBank-%,$(wildcard *-VegBank.*.csv)) \
23 223 aaronmk
VegX-*.plots.csv $(misc)
24 196 aaronmk
25 235 aaronmk
clean: _not_file
26 196 aaronmk
	$(RM) $(all)
27 188 aaronmk
28 240 aaronmk
#####
29 198 aaronmk
30 240 aaronmk
misc: $(misc)
31
.PRECIOUS: $(misc)
32
33 350 aaronmk
bin = ../bin
34
in_place = $(bin)/in_place
35
repl = $(bin)/repl
36
sort = $(bin)/sort 1 0
37
chRoot = $(bin)/ch_root <$< >$@
38 240 aaronmk
empty = $(SED) -n \
39
's/^CREATE TABLE ([0-9A-Za-z_]+) \($$/TRUNCATE \1 CASCADE;/p' <$< >$@
40
41 212 aaronmk
schemas/vegbien.sql: schemas/vegbank.sql
42 218 aaronmk
	$(repl) <$< VegBank-VegBIEN.schema.csv|$(repl) VegBank-VegBIEN.csv >$@
43 212 aaronmk
44 223 aaronmk
schemas/vegbien_empty.sql: schemas/vegbien.sql
45
	$(empty)
46
47 350 aaronmk
VegX-VegBank.organisms.csv: _not_file
48
	$(in_place) $@ $(sort)
49
50 212 aaronmk
VegX-VegBIEN.organisms.csv: VegX-VegBank.organisms.csv
51 221 aaronmk
	$(repl) <$< VegBank-VegBIEN.csv 1|$(sort) >$@
52 212 aaronmk
53 240 aaronmk
#####
54 212 aaronmk
55 235 aaronmk
plots: _not_file $(subst .organisms.,.plots.,$(wildcard VegX-*.organisms.csv))
56 197 aaronmk
57 188 aaronmk
chRoot2PlotsLeftVegx =\
58
	env \
59
	left_in_root='/*s/individualOrganismObservation/*ID->/*s/plotObservation' \
60
	left_out_root='/*s/plotObservation' \
61
	$(chRoot)
62
63
VegX-VegBank.plots.csv: VegX-VegBank.organisms.csv
64
	$(chRoot2PlotsVegxVegbank)
65
chRoot2PlotsVegxVegbank =\
66
	env \
67
	right_in_root='/taxonObservation/*_ID/observation' \
68
	right_out_root='/observation' \
69
	$(chRoot2PlotsLeftVegx)
70
71
VegX-VegBIEN.plots.csv: VegX-VegBIEN.organisms.csv
72
	$(chRoot2PlotsVegxVegbien)
73
chRoot2PlotsVegxVegbien =\
74
	env \
75 200 aaronmk
	right_in_root='/taxonoccurrence/*_ID/plotevent' \
76 188 aaronmk
	right_out_root='/plotevent' \
77
	$(chRoot2PlotsLeftVegx)