Skip to content

Commit 6ac642d

Browse files
Pavel MachalekPavel Machalek
Pavel Machalek
authored and
Pavel Machalek
committed
Switch to Scott's bls_pulse.py
1 parent a0c3be4 commit 6ac642d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

clj/cloud-kepler/src/cloud_kepler/hadoop/bls.clj

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@
2323
output-tap (ut/local-tap output-path)
2424
bls-options-string (clojure.string/join
2525
" "
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)
3131
"--nbins" (opts :nbins)
3232
])
3333
bls-cascade (ut/generalized-python-q
3434
input-tap output-tap
3535
(opts :python) (opts :jar)
36-
"python/bls_search.py" bls-options-string
36+
"python/bls_pulse.py" bls-options-string
3737
nil nil
3838
"bls-search")]
3939
(.complete bls-cascade))))

clj/cloud-kepler/src/cloud_kepler/jobdefs/cloud-kepler-jobdef.clj

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
[:python-jar "Path to the python jar" nil]
1212
[:kid-input "Kepler id, quarter input file" nil]
1313
[: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]
1717
[:nsearch "Number of trial periods" 100]
1818
[:nbins "Number of phase bins" 100])
1919

0 commit comments

Comments
 (0)