-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_interactive.m
97 lines (88 loc) · 2.61 KB
/
plot_interactive.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
% run 'initalise' first
% left-click to select a peak position
% use up/down arrows to adjust contour levels
% 'p' to print NOE peak positions to console window
% 'q' to quit
contour(dH2,dC2,hmqc,clev_2d)
set(gca,'xdir','reverse');set(gca,'ydir','reverse')
xlabel('1H chemical shift / ppm')
ylabel('13C chemical shift / ppm')
[gx,gy,but]=ginput(1);
cscale = 1;
peaksx=[]; peaksy=[];
while true
contour(dH2,dC2,hmqc,clev_2d,'color',[.7 .7 .7])
set(gca,'xdir','reverse');set(gca,'ydir','reverse')
xlabel('1H chemical shift / ppm')
ylabel('13C chemical shift / ppm')
ix = closest(dH,gx);
iy = closest(dC,gy);
if p2(ix+1,iy)>p2(ix,iy)
ix = ix+1;
elseif p2(ix-1,iy)>p2(ix,iy)
ix = ix-1;
end
if p2(ix,iy+1)>p2(ix,iy)
iy = iy+1;
elseif p2(ix,iy-1)>p2(ix,iy)
iy = iy-1;
end
p=y(ix,iy,:,:);
p=reshape(p,[ftsize(3) ftsize(4)]);
clev = clev_4d * cscale;
hold on
contour(dHnoe,dCnoe,p',clev,'r')
contour(dHnoe,dCnoe,p',-clev,'m')
plot(dH(ix),dC(iy),'kx')
noe = p;
noe(noe<clev(1)) = 0;
[peaksx, peaksy] = find(imregionalmax(noe)==1);
%plot(dHnoe(peaksx),dCnoe(peaksy),'kd','markerfacecolor','g')
for n=1:length(peaksx)
x=dHnoe(peaksx(n));
yy=dCnoe(peaksy(n));
x0=dH(ix); y0=dC(iy);
if abs(x0-x)>0.01
if abs(y0-yy)>0.05
plot([x0 x],[y0 yy],'k--');
end
end
end
hold off
set(gca,'xdir','reverse');set(gca,'ydir','reverse')
xlabel('1H chemical shift / ppm')
ylabel('13C chemical shift / ppm')
% get next input
[gx2,gy2,but]=ginput(1);
% LMB = 1, up = 30, down = 31, q = 113
if but==30
cscale = cscale * 1.3;
elseif but==31
cscale = cscale / 1.3;
elseif but==1
% pick another peak position
% zoom in and re-pick
xl = xlim; yl = ylim; % store old plot limits
xlim([gx2-.1 gx2+.1])
ylim([gy2-1 gy2+1])
drawnow nocallbacks
but = 0;
while(but ~= 1)
% wait for left click
[gx2, gy2, but] = ginput(1);
end
% restore old plot limits
xlim(xl); ylim(yl);
cscale = 1; % reset contour scale
gx=gx2;
gy=gy2;
elseif but==113 % q
break
elseif but==112 % p - fit peaks
label = input('Please enter a peak label: ','s');
for n=1:length(peaksx)
intensity = y(ix,iy,peaksx(n),peaksy(n));
fprintf('%s\t%.2f\t%.2f\t%.2f\t%.2f\t%.3e\n',label,dH(ix),dC(iy),dHnoe(peaksx(n)),dCnoe(peaksy(n)),intensity)
end
end
end