# Copyright (C) 2023 Dennis J. Darland # This file is part of Dennis J Darland's Glucose Prediction Software. # It is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with it. If not, see . echo "Glucose programs Editing" echo "enter 1 to proceed 999 to quit" read select while [ $select -ne 999 ] do echo "-----------" echo "0 relate_cross00.sno - edit to change monthly data extraction program" echo "1 relate_base.sno - edit to change configutation data" echo "2 relate_cross01.sno - writes maple program to solve for coefficients and aves" echo "3 relate_several_cross_out1.mxt - maple program for coefficients etc" echo "4 relate_cross02.sno - extracts relevant data from maple program" echo "5 relate_cross03.sno - massages above data in human and for next program" echo "6 relate03.icn - eliminates configurable number of extreme coeffs" echo "7 relate_cross05.sno - generates maple program to apple coeffs to data" echo "8 relate_several_cross_out5.mxt - generated maple program from above" echo "9 relate_cross07.sno - converts general output of above to html" echo "10 relate_cross09.sno - converts specific output of above to html" echo "11 relate_cross11.sno - generates summary.txt from file in OUT/ from maple above" echo "12 relate_cross13.sno - generates summary2.txt from file in OUT/ from maple above" echo "13 relate13.icn - eliminates extreme values howgood from results" echo "14 relate_cross19.sno - reprocesses data with extremes eliminated" echo "15 relate_cat.rb - create table.html" echo "16 relate_cat2.rb - create table2.html" echo "17 relate_cat3.rb - create table3.html" echo "18 relate_cat4.rb - create table4.html" echo "19 doit - master script" echo "777 NOTES_DJD.txt" echo "999 quit" echo "select" read select case $select in 0) $EDITOR relate_cross00.sno;; 1) $EDITOR relate_base.sno;; 2) $EDITOR relate_cross01.sno;; 3) $EDITOR relate_several_cross_out1.mxt;; 4) $EDITOR relate_cross02.sno;; 5) $EDITOR relate_cross03.sno;; 6) $EDITOR relate03.icn;; 7) $EDITOR relate_cross05.sno;; 8) $EDITOR relate_several_cross_out5.mxt;; 9) $EDITOR relate_cross07.sno;; 10) $EDITOR relate_cross09.sno;; 11) $EDITOR relate_cross11.sno;; 12) $EDITOR relate_cross13.sno;; 13) $EDITOR relate13.icn;; 14) $EDITOR relate_cross19.sno;; 15) $EDITOR relate_cat.rb;; 16) $EDITOR relate_cat2.rb;; 17) $EDITOR relate_cat3.rb;; 18) $EDITOR relate_cat4.rb;; 19) $EDITOR doit;; 777) $EDITOR NOTES_DJD.txt;; esac done