EZlstBoxExt.m 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. %EZlstBoxExt.m
  2. % Calls either EZdestComp.m
  3. % or if 'Chrono' EZmDayPlotUCmp.m and EZmDayTrend.m and if ghandles.CompositeTog_,EZmDayPlotUcomposite
  4. % or by EZviewGui.m (listboxGnOrf_Callback)
  5. % Replace get(ghandles.CompositeTog1,'value')==1 ... with get(handles....
  6. if expN==1 && get(handles.CompositeTog1,'value')==1 ...
  7. || expN==2 && get(handles.CompositeTog2,'value')==1 ...
  8. || expN==3 && get(handles.CompositeTog3,'value')==1
  9. CompositeTrendFlg=1; else CompositeTrendFlg=0;
  10. end
  11. Exp(expN).cLmdEven=0; % Added for Cummulative Median and Mean 'C' plot
  12. RFDMflg=0;
  13. if zoneSel==1,DexpN=(get(handles.DN1,'value')); end
  14. if zoneSel==2,DexpN=(get(handles.DN2,'value')); end
  15. if zoneSel==3,DexpN=(get(handles.DN3,'value')); end
  16. try
  17. p1=cell2mat(strfind(selGnOrf,'('));
  18. p2=cell2mat(strfind(selGnOrf,')'));
  19. dmNum=str2num(selGnOrf{1}(p1+1:p2-1));
  20. inDM=selGnOrf{1}(p1+1:p2-1);
  21. if (~isempty(dmNum)&& isnumeric(dmNum)),RFDMflg=1; end
  22. catch
  23. end
  24. if RFDMflg, Exp(zoneSel).Dexp(DexpN).pertSel=dmNum; end % pertSel=pert;
  25. inMP=selGnOrf{1}((LBdlims{:,:}(1))+1:(LBdlims{:,:}(2))-1)
  26. % LBmp=str2double(inMP);
  27. sgdInfoOnly=get(handles.InfoToggle,'value');
  28. if sgdInfoOnly==1
  29. EZviewInfoBox
  30. else % Runs to end of EZlstBoxExt.m within this else condition
  31. if zoneSel==1
  32. Max=floor(get(handles.MPsldr1,'max'));
  33. Min=floor(get(handles.MPsldr1,'min'));
  34. if str2num(inMP) >=Min && str2num(inMP) <=Max
  35. set(handles.MPed1,'string',inMP)
  36. set(handles.MPsldr1,'value',str2double(inMP));
  37. else
  38. if str2num(inMP) >=Max, set(handles.MPsldr1,'value',Max); set(handles.MPed1,'string',num2str(Max));end
  39. if str2num(inMP) <=Min, set(handles.MPsldr1,'value',Min),set(handles.MPed1,'string',num2str(Min));end
  40. end
  41. end
  42. if zoneSel==2
  43. Max=floor(get(handles.MPsldr2,'max'));
  44. Min=floor(get(handles.MPsldr2,'min'));
  45. if str2num(inMP) >=Min && str2num(inMP) <=Max
  46. set(handles.MPed2,'string',inMP)
  47. set(handles.MPsldr2,'value',str2double(inMP));
  48. else
  49. if str2num(inMP) >=Max, set(handles.MPsldr2,'value',Max); set(handles.MPed2,'string',num2str(Max));end
  50. if str2num(inMP) <=Min, set(handles.MPsldr2,'value',Min),set(handles.MPed2,'string',num2str(Min));end
  51. end
  52. end
  53. if zoneSel==3
  54. Max=floor(get(handles.MPsldr3,'max'));
  55. Min=floor(get(handles.MPsldr3,'min'));
  56. if str2num(inMP) >=Min && str2num(inMP) <=Max
  57. set(handles.MPed3,'string',inMP)
  58. set(handles.MPsldr3,'value',str2double(inMP));
  59. else
  60. if str2num(inMP) >=Max, set(handles.MPsldr3,'value',Max); set(handles.MPed3,'string',num2str(Max));end
  61. if str2num(inMP) <=Min, set(handles.MPsldr3,'value',Min),set(handles.MPed3,'string',num2str(Min));end
  62. end
  63. end
  64. if RFDMflg
  65. if zoneSel==1
  66. Max=floor(get(handles.DMsldr1,'max'));
  67. Min=floor(get(handles.DMsldr1,'min'));
  68. if str2num(inDM) >=Min && str2num(inDM) <=Max
  69. set(handles.DMed1,'string',inDM)
  70. set(handles.DMsldr1,'value',str2double(inDM));
  71. else
  72. if str2num(inDM) >=Max, set(handles.DMsldr1,'value',Max); set(handles.DMed1,'string',num2str(Max));end
  73. if str2num(inDM) <=Min, set(handles.DMsldr1,'value',Min),set(handles.DMed1,'string',num2str(Min));end
  74. end
  75. end
  76. if zoneSel==2
  77. Max=floor(get(handles.DMsldr2,'max'));
  78. Min=floor(get(handles.DMsldr2,'min'));
  79. if str2num(inDM) >=Min && str2num(inDM) <=Max
  80. set(handles.DMed2,'string',inDM)
  81. set(handles.DMsldr2,'value',str2double(inDM));
  82. else
  83. if str2num(inDM) >=Max, set(handles.DMsldr2,'value',Max); set(handles.DMed2,'string',num2str(Max));end
  84. if str2num(inDM) <=Min, set(handles.DMsldr2,'value',Min),set(handles.DMed2,'string',num2str(Min));end
  85. end
  86. end
  87. if zoneSel==3
  88. Max=floor(get(handles.DMsldr3,'max'));
  89. Min=floor(get(handles.DMsldr3,'min'));
  90. if str2num(inDM) >=Min && str2num(inDM) <=Max
  91. set(handles.DMed3,'string',inDM)
  92. set(handles.DMsldr3,'value',str2double(inDM));
  93. else
  94. if str2num(inDM) >=Max, set(handles.DMsldr3,'value',Max); set(handles.DMed3,'string',num2str(Max));end
  95. if str2num(inDM) <=Min, set(handles.DMsldr3,'value',Min),set(handles.DMed3,'string',num2str(Min));end
  96. end
  97. end
  98. end
  99. EZVimDisplay
  100. % 17_111 If CompositeTog_ set, Routine called to find all gene replicates and produce composite values
  101. if CompositeTrendFlg==1
  102. if strcmp(Exp(expN).DexpType, 'chrono')
  103. EZmDayPlotUcmp
  104. else
  105. EZplotUcmp
  106. end
  107. % Plot Selected Gene/Orf Spot
  108. % if non-Composite ("normal") then - ...
  109. elseif CompositeTrendFlg~=1
  110. destPerMP=Exp(zoneSel).Dexp(DexpN).destPerMP; %length(gS.DM1.drug);
  111. pertSel=Exp(zoneSel).Dexp(DexpN).pertSel; %floor(get(handles.DMsldr1,'value'));
  112. plateNum=(LBmp-1)*destPerMP + pertSel;
  113. indx=((LBr-1)*24) +LBc
  114. MP=Exp(zoneSel).Dexp(DexpN).MP;
  115. try
  116. K=scan(1,plateNum).plate(1).CFout(indx,3); Ks=num2str(K);
  117. r=scan(1,plateNum).plate(1).CFout(indx,4); rs=num2str(r);
  118. l=scan(1,plateNum).plate(1).CFout(indx,5); Ls=num2str(l);
  119. try Kstr=Ks(1:5); catch, Kstr=Ks(1:length(Ks)); end
  120. try rstr=rs(1:5); catch, rstr=rs(1:length(rs)); end
  121. try Lstr=Ls(1:5); catch, Lstr=Ls(1:length(Ls)); end
  122. Kl=scan(1,plateNum).plate(1).CFout(indx,7);
  123. Ku=scan(1,plateNum).plate(1).CFout(indx,8);
  124. rl=scan(1,plateNum).plate(1).CFout(indx,9);
  125. ru=scan(1,plateNum).plate(1).CFout(indx,10);
  126. lfast=scan(1,plateNum).plate(1).CFout(indx,11);
  127. lslow=scan(1,plateNum).plate(1).CFout(indx,12);
  128. t=1:200;
  129. clear g;
  130. try
  131. g=K ./ (1 + exp(-r.* (t - l )));
  132. gSlow=Kl ./ (1 + exp(-rl.* (t - lslow )));
  133. gFast=Ku ./ (1 + exp(-ru.* (t - lfast )));
  134. if K==0||r==0||l==0, g(1:200)=1;gSlow(1:200)=1;gFast(1:200)=1;end
  135. tser=(scan(1,plateNum).plate(1).t0Series(:));
  136. rawData=scan(1,plateNum).plate(1).intens(indx,:)/scan(1,plateNum).plate(1).Ag(indx);
  137. if zoneSel==1, plotAxes=ghandles.Paxes1; OLaxes=ghandles.OLaxes1;
  138. Dlaxes=ghandles.Dlaxes1;Dkaxes=ghandles.Dkaxes1;Draxes=ghandles.Draxes1;
  139. Exp(1).traceN=Exp(1).traceN+1;
  140. traceN=Exp(1).traceN;
  141. end
  142. if zoneSel==2, plotAxes=ghandles.Paxes2; OLaxes=ghandles.OLaxes2;Daxes=ghandles.Daxes2;
  143. Dlaxes=ghandles.Dlaxes2;Dkaxes=ghandles.Dkaxes2;Draxes=ghandles.Draxes2;
  144. Exp(2).traceN=Exp(2).traceN+1;
  145. traceN=Exp(2).traceN;
  146. end
  147. if zoneSel==3, plotAxes=ghandles.Paxes3; OLaxes=ghandles.OLaxes3;Daxes=ghandles.Daxes3;
  148. Dlaxes=ghandles.Dlaxes3;Dkaxes=ghandles.Dkaxes3;Draxes=ghandles.Draxes3;
  149. Exp(3).traceN=Exp(3).traceN+1;
  150. traceN=Exp(3).traceN;
  151. end
  152. plot(plotAxes,t,g);hold (plotAxes,'on');plot(plotAxes,tser,rawData,'g*');
  153. plot(plotAxes,t,gSlow,'y');plot(plotAxes,t,gFast,'r');hold (plotAxes,'off');
  154. % Store L R and K valves for Composite [C] plots
  155. Exp(expN).ll(traceN)=l; Exp(expN).rr(traceN)=r; Exp(expN).kk(traceN)=K;
  156. Exp(expN).lslow(traceN)=lslow; Exp(expN).lfast(traceN)=lfast;
  157. try for i=1:length(Exp(zoneSel).hOL(:)),set(Exp(zoneSel).hOL(i),'color',[0 0 1]); end, catch; end
  158. Exp(zoneSel).hOL(traceN)=plot(OLaxes,t,g);hold on;
  159. set(Exp(zoneSel).hOL(traceN),'color',[1 0 0])
  160. Exp(zoneSel).hOLb(traceN)=plot(OLaxes,tser,rawData,'g*');
  161. catch
  162. catchissue='Ln100 EZlstBoxExt'
  163. end
  164. % Get the DM agar description
  165. if expN==1,DMstr=char(get(handles.DM1,'string'));end
  166. if expN==2,DMstr=char(get(handles.DM2,'string'));end
  167. if expN==3,DMstr=char(get(handles.DM3,'string'));end
  168. if isequal(selGnOrf{1}(1:3),'RF1')
  169. gene={selGnOrf{1}(1:p2)};
  170. geneOrfstr=strcat(gene,'_','m',num2str(LBmp),'r',num2str(LBr),'c',num2str(LBc),'_',tPtStr);
  171. grfgenestr=strcat(gene,'_','m',num2str(LBmp),'r',num2str(LBr),'c',num2str(LBc));
  172. else
  173. gene=MP(1,LBmp).genename{1,1}(indx); orf=MP(1,LBmp).orf{1,1}(indx);
  174. geneOrfstr=strcat(gene,'_',orf,'_','m',num2str(LBmp),'r',num2str(LBr),'c',num2str(LBc),'_',tPtStr);
  175. grfgenestr=strcat(gene,'_',orf,'_','m',num2str(LBmp),'r',num2str(LBr),'c',num2str(LBc));
  176. end
  177. spec=MP(1,LBmp).specifics{1,1}(indx); %orfrep=MP(1,plateNum).orfRep{1,1}(indx);
  178. tPtStr=strcat('T=', num2str(scan(1,plateNum).plate(1).t0Series(tPtSel)));
  179. graphStr=strcat(grfgenestr,'_','L=',Lstr,'_','r=',rstr,'_','K=',Kstr);
  180. spotDescrip=strcat(graphStr,'->',DMstr);
  181. xp=char(Exp(zoneSel).Dexp(DexpN).resDir);
  182. if ispc,
  183. slashPos=strfind(char(Exp(zoneSel).Dexp(DexpN).resDir),'\');
  184. else
  185. slashPos=strfind(char(Exp(zoneSel).Dexp(DexpN).resDir),'/');
  186. end
  187. startPos=slashPos(length(slashPos)-1) +1;
  188. endPos=slashPos(length(slashPos)) -1
  189. expStr={xp(startPos:endPos)}
  190. Exp(zoneSel).hOLname(traceN)=spotDescrip; % graphStr; %ghandles.Exp(zoneSel).hOLname(traceN)=graphStr;
  191. Exp(zoneSel).hOLexpNm(traceN)=expStr; % ghandles.Exp(expN).hOLexpNm(traceN)=expStr;
  192. Exp(zoneSel).hOLresDir(traceN)={Exp(zoneSel).Dexp(DexpN).resDir};
  193. Exp(zoneSel).hOLplateNum(traceN)=plateNum;
  194. % traceData=vertcat(get(Exp(OLay).hOL(traceN),'XData'),get(ghandles.Exp(OLay).hOL(traceN),'YData'));
  195. if zoneSel==1,set(ghandles.GeneOrfLoc1,'string',geneOrfstr);end % Displays the value.
  196. if zoneSel==2,set(ghandles.GeneOrfLoc2,'string',geneOrfstr);end
  197. if zoneSel==3,set(ghandles.GeneOrfLoc3,'string',geneOrfstr);end
  198. if zoneSel==1,set(ghandles.graphStrLoc1,'string',spotDescrip);end %graphStr);end % Displays the value.
  199. if zoneSel==2,set(ghandles.graphStrLoc2,'string',spotDescrip);end %graphStr);end
  200. if zoneSel==3,set(ghandles.graphStrLoc3,'string',spotDescrip);end %graphStr);end
  201. catch
  202. catchissue='Ln141 EZlstBoxExt'
  203. msg='Error'
  204. end
  205. end
  206. % Write Spot and Exp Info to OLay title areas
  207. if zoneSel==1 %&& get(ghandles.rotPB1,'value')~=1
  208. if length(char(Exp(zoneSel).hOLname(traceN)))>40,set(ghandles.OLay1,'FontSize',8);end
  209. set(ghandles.OLay1,'string', Exp(zoneSel).hOLname(traceN));
  210. if length(char(Exp(zoneSel).hOLexpNm(traceN)))>40,set(ghandles.OLexp1,'FontSize',8);end
  211. set(ghandles.OLexp1,'string',Exp(zoneSel).hOLexpNm(traceN));
  212. end
  213. if zoneSel==2 %&& get(ghandles.rotPB2,'value') ~=1
  214. if length(char(Exp(zoneSel).hOLname(traceN)))>40,set(ghandles.OLay2,'FontSize',8);end
  215. set(ghandles.OLay2,'string', Exp(zoneSel).hOLname(traceN));
  216. if length(char(Exp(zoneSel).hOLexpNm(traceN)))>40,set(ghandles.OLexp2,'FontSize',8);end
  217. set(ghandles.OLexp2,'string',Exp(zoneSel).hOLexpNm(traceN));
  218. end
  219. if zoneSel==3 %&& get(ghandles.rotPB3,'value') ~=1
  220. if length(char(Exp(zoneSel).hOLname(traceN)))>40,set(ghandles.OLay3,'FontSize',8);end
  221. set(ghandles.OLay3,'string', Exp(OLay).hOLname(traceN));
  222. if length(char(Exp(zoneSel).hOLexpNm(traceN)))>40,set(ghandles.OLexp3,'FontSize',8);end
  223. set(ghandles.OLexp3,'string',Exp(OLay).hOLexpNm(traceN));
  224. end
  225. % Highlight gene/orf select Spot on Image
  226. tPtSel=Exp(zoneSel).Dexp(DexpN).tPtSel;
  227. Rim=16-(LBr-1); Cim =LBc;
  228. spotCoor=Exp(zoneSel).Dexp(DexpN).FexpScanSpots{1,plateNum}{Cim,Rim,tPtSel};
  229. if zoneSel==1, expAxes=ghandles.Iaxes1;end
  230. if zoneSel==2, expAxes=ghandles.Iaxes2;end
  231. if zoneSel==3, expAxes=ghandles.Iaxes3;end
  232. %axes(ghandles.Iaxes1)
  233. plot(expAxes,(spotCoor(2)+24),(spotCoor(1)+24),'.y')
  234. % GraphicDestinationPerturbationComparison**15_0821
  235. EZdatatip=0; %**
  236. if strcmp((Exp(expN).DexpType),'single') ...
  237. || strcmp((Exp(expN).DexpType),'multi')
  238. EZdestComp
  239. elseif strcmp((Exp(expN).DexpType),'chrono')
  240. EZmDayTrend
  241. end
  242. % HeatMap Text Field
  243. try
  244. ll=num2str(l);
  245. if length(ll)>5,htl=ll(1:5);else htl=ll;end
  246. catch
  247. htl=' ';
  248. end
  249. try
  250. n1=num2str(Exp(expN).Dexp(DexpN).HtMpIntN1(indx));
  251. if length(n1)>5,N1=n1(1:5);else N1=n1; end
  252. htN1=strcat('_N1=',N1);
  253. catch,
  254. htN1=' ';
  255. end
  256. try
  257. htmapStr=strcat('L=',htl, htN1)
  258. if expN==1,set(ghandles.HtMapVals1,'string',htmapStr);end
  259. if expN==2,set(ghandles.HtMapVals2,'string',htmapStr);end
  260. if expN==3,set(ghandles.HtMapVals3,'string',htmapStr);end
  261. catch
  262. end
  263. end