-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathlifemapper.jx
59 lines (59 loc) · 1.93 KB
/
lifemapper.jx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"define": {
"MAXENT": "./tools/maxent.jar",
"JAVA": "java",
"PROCESS_POINTS": "./tools/process_points.py",
"PROJECTIONS": ["data/layers/worldclim"],
"TAXA": [basename(t, ".csv") for t in listdir("points")],
"MODEL": "data/layers/worldclim",
},
"rules": [
{
"command": template(
"mkdir -p outputs && {PROCESS_POINTS} points/{t}.csv outputs/{t}.csv"
),
"outputs": [
template("outputs/{t}.csv"),
],
"inputs": [
template("points/{t}.csv"),
PROCESS_POINTS,
],
} for t in TAXA, {
"command": template(
"mkdir -p outputs/{t} && {JAVA} -cp {MAXENT} density.MaxEnt -s outputs/{t}.csv -e {MODEL} -o outputs/{t} nowarnings nocache autorun -z"
),
"inputs": [
MAXENT,
#JAVA,
MODEL,
template("outputs/{t}.csv")
],
"outputs": [
template("outputs/{t}"),
],
} for t in TAXA, {
"command": template(
"{JAVA} -cp {MAXENT} density.Project outputs/{t}/{t}.lambdas {p} outputs/{t}_{base}.asc nowarnings nocache autorun -z; touch outputs/{t}_{base}.asc; touch outputs/{t}_{base}_clamping.asc",
{"base": basename(p)}
),
"outputs": [
template(
"outputs/{t}_{base}.asc",
{"base": basename(p)}
),
template(
"outputs/{t}_{base}_clamping.asc",
{"base": basename(p)}
)
],
"inputs": [
MAXENT,
#JAVA,
MODEL,
p,
template("outputs/{t}"),
]
} for t in TAXA for p in PROJECTIONS,
],
}