1
|
all: FORCE VegBank-VegBIEN
|
2
|
$(MAKE) plots
|
3
|
./join VegX VegBank
|
4
|
./join VegX VegBIEN
|
5
|
./review
|
6
|
|
7
|
FORCE:
|
8
|
|
9
|
all =\
|
10
|
$(wildcard for_review/*.csv) \
|
11
|
$(filter-out VegX-% VegBank-%,$(wildcard *-VegBank.*.csv)) \
|
12
|
VegX-*.plots.csv VegX-VegBIEN.organisms.csv schemas/vegbien.sql
|
13
|
|
14
|
clean: FORCE
|
15
|
$(RM) $(all)
|
16
|
|
17
|
|
18
|
VegBank-VegBIEN: schemas/vegbien.sql VegX-VegBIEN.organisms.csv
|
19
|
|
20
|
repl = ../scripts/util/repl
|
21
|
|
22
|
schemas/vegbien.sql: schemas/vegbank.sql
|
23
|
$(repl) <$< VegBank-VegBIEN.schema.csv|$(repl) VegBank-VegBIEN.csv >$@
|
24
|
|
25
|
VegX-VegBIEN.organisms.csv: VegX-VegBank.organisms.csv
|
26
|
$(repl) <$< VegBank-VegBIEN.csv 1 >$@
|
27
|
|
28
|
|
29
|
plots: $(subst .organisms.,.plots.,$(wildcard VegX-*.organisms.csv))
|
30
|
|
31
|
chRoot = ../scripts/util/ch_root <$< >$@
|
32
|
|
33
|
chRoot2PlotsLeftVegx =\
|
34
|
env \
|
35
|
left_in_root='/*s/individualOrganismObservation/*ID->/*s/plotObservation' \
|
36
|
left_out_root='/*s/plotObservation' \
|
37
|
$(chRoot)
|
38
|
|
39
|
VegX-VegBank.plots.csv: VegX-VegBank.organisms.csv
|
40
|
$(chRoot2PlotsVegxVegbank)
|
41
|
chRoot2PlotsVegxVegbank =\
|
42
|
env \
|
43
|
right_in_root='/taxonObservation/*_ID/observation' \
|
44
|
right_out_root='/observation' \
|
45
|
$(chRoot2PlotsLeftVegx)
|
46
|
|
47
|
VegX-VegBIEN.plots.csv: VegX-VegBIEN.organisms.csv
|
48
|
$(chRoot2PlotsVegxVegbien)
|
49
|
chRoot2PlotsVegxVegbien =\
|
50
|
env \
|
51
|
right_in_root='/taxonoccurrence/*_ID/plotevent' \
|
52
|
right_out_root='/plotevent' \
|
53
|
$(chRoot2PlotsLeftVegx)
|