File tree 2 files changed +9
-9
lines changed
clj/cloud-kepler/src/cloud_kepler
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 23
23
output-tap (ut/local-tap output-path)
24
24
bls-options-string (clojure.string/join
25
25
" "
26
- [" --minper" (opts :minper )
27
- " --maxper " (opts :maxper )
28
- " --mindur " (opts :mindur )
29
- " --maxdur " (opts :maxdur )
30
- " --nsearch" (opts :nsearch )
26
+ [; "--minper" (opts :minper)
27
+ " --per " (opts :maxper )
28
+ " --qmin " (opts :mindur )
29
+ " --qmax " (opts :maxdur )
30
+ ; "--nsearch" (opts :nsearch)
31
31
" --nbins" (opts :nbins )
32
32
])
33
33
bls-cascade (ut/generalized-python-q
34
34
input-tap output-tap
35
35
(opts :python ) (opts :jar )
36
- " python/bls_search .py" bls-options-string
36
+ " python/bls_pulse .py" bls-options-string
37
37
nil nil
38
38
" bls-search" )]
39
39
(.complete bls-cascade))))
Original file line number Diff line number Diff line change 11
11
[:python-jar " Path to the python jar" nil ]
12
12
[:kid-input " Kepler id, quarter input file" nil ]
13
13
[:min-per " Minimum planetary ortbital period" 1.5 ]
14
- [:max-per " Maximum planetrary orbital period" 100 . ]
15
- [:min-dur " Minimum duration of transit in hours " 1.5 ]
16
- [:max-dur " Maximum duration of transit in hours " 15. ]
14
+ [:max-per " Maximum planetrary orbital period TBD " 1 . ]
15
+ [:min-dur " Minimum duration of transit in phase " 0.01 ]
16
+ [:max-dur " Maximum duration of transit in phase " 0.1 ]
17
17
[:nsearch " Number of trial periods" 100 ]
18
18
[:nbins " Number of phase bins" 100 ])
19
19
You can’t perform that action at this time.
0 commit comments