📄 do_new_neighbor
字号:
#! /bin/sh## This script is the master script for processing feret Data# ======================================================================# -------- CONFIGURE -------set threshold = 89.0set threshold_f = 50.0set first_ev = 1set last_ev = 100set last_ev_f = 125set weight_file = weightsset bias_file = biasesset bayes_dir = $DATA/Bayesian#set p0 = 0.001#set sigmoid_scale = 0.2set p0 = 0.0005set sigmoid_scale = 0.025# run neighbor#----------------------------------------------------------------------#set top_n = `wc G/list | awk '{print int($1/10 + 0.5)}'`#set top_N = 25#if ($top_n > $top_N) then# set top_N = $top_n#endif#set top_N = 100echo Neighbor: printing matchesecho --------------------------------------echo mkdir Ndate >! t0new_neighbor -m G/Coeffs/f \ -k glist \ -x G/Coeffs/f \ -l plist \ -o N \ -t $threshold_f \ -a $first_ev \ -b $last_ev_f \ -z $bayes_dir \ -p $p0 \ -s $sigmoid_scale date >! t1# print out results and test files#----------------------------------------------------------------------#sed "/[a-z]/d" neighbor.out >! TESTcat G/t0 G/t1 t0 t1 >! TIMES
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -