-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSnakefile
33 lines (31 loc) · 1.02 KB
/
Snakefile
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
rule fig1prep:
input:
"src/data/figure1/figure1/pyring_t0-bad_timestamps-bad_seglen-bad/result.nc",
"src/data/figure1/figure1/pyring_t0-good_timestamps-good_seglen-good/result.nc",
"src/data/figure1/figure1/ringdown_t0-bad_timestamps-good_seglen-bad/result.nc",
"src/data/figure1/figure1/ringdown_t0-bad_timestamps-good_seglen-good/result.nc",
"src/data/figure1/figure1/ringdown_t0-good_timestamps-good_seglen-good/result.nc"
output:
"src/data/fig1_samples_dict.pkl"
cache:
True
script:
"src/scripts/figure1_prep.py"
rule finchmoore1:
input:
"src/data/finch_moore/dataset/posterior_samples/GW150914/3W220221/posterior_samples.dat"
output:
"src/data/A1_posterior_tref.dat"
cache:
True
script:
"src/scripts/finchmoore1.py"
rule finchmoore2:
input:
"src/data/A1_posterior_tref.dat"
output:
"src/data/fm_t0_kde_grid.h5"
cache:
True
script:
"src/scripts/finchmoore2.py"