2014年7月21日 星期一
Feature Category
|
Ala
|
Arg
|
Asn
|
Asp
|
Cys
|
Glu
|
Gln
|
Gly
|
His
|
Ile
|
Leu
|
Lys
|
Met
|
Phe
|
Pro
|
Ser
|
Thr
|
Trp
|
Tyr
|
Val
|
||
Feature Count
|
Active or catalytic
sites
|
|||||||||||||||||||||
Binding sites
|
||||||||||||||||||||||
Functional loops and
regions
|
||||||||||||||||||||||
Interfaces
|
||||||||||||||||||||||
Motifs
|
||||||||||||||||||||||
Other sites
|
||||||||||||||||||||||
Sum
|
258
|
618
|
345
|
1078
|
344
|
487
|
227
|
906
|
595
|
156
|
281
|
768
|
53
|
238
|
235
|
462
|
424
|
92
|
251
|
180
|
||
Charge
|
0
|
+
|
-
/ +
|
-
|
-
/ +
|
-
|
-
/ +
|
0
|
+
|
0
|
0
|
+
|
0
|
0
|
0
|
-
/ +
|
-
/ +
|
0
|
-
/ +
|
0
|
||
Abundance (%)
|
8.84
|
5.7
|
4.17
|
5.39
|
1.24
|
6.24
|
3.82
|
7.03
|
2.2
|
5.95
|
9.94
|
5.27
|
2.37
|
4
|
4.71
|
6.72
|
5.43
|
1.21
|
3
|
6.77
|
||
Hydrophobicity
|
0.81
|
0
|
0.45
|
0.42
|
0.72
|
0.46
|
0.43
|
0.77
|
0.55
|
1
|
0.92
|
0.26
|
0.81
|
0.95
|
0.68
|
0.6
|
0.63
|
0.85
|
0.71
|
0.92
|
||
Side chain
flexibility
( No:none; Re:restricted; Li:Limited; Lo:Low; M0:moderate; Hi:high) |
Li
|
Hi
|
Mo
|
Mo
|
Lo
|
Hi
|
Hi
|
No
|
Mo
|
Mo
|
Mo
|
Hi
|
Hi
|
Mo
|
Re
|
Lo
|
Lo
|
Mo
|
Mo
|
Lo
|
||
Potential side chain
H-bonds
|
0
|
7
|
5
|
4
|
0
|
4
|
5
|
0
|
3
|
0
|
0
|
3
|
0
|
0
|
0
|
3
|
3
|
1
|
3
|
0
|
||
Interaction modes
|
Covalent disulfide
bonds
|
Yes
|
||||||||||||||||||||
Ionic
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
|||||||||||||||||
H-bonds
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
|||||||||||
aromatic stacking
|
Yes
|
Yes
|
Yes
|
Yes
|
||||||||||||||||||
van der Waals
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
Yes
|
||
2014年7月1日 星期二
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Spin, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Memo1: TMemo;
SpinEdit1: TSpinEdit;
Label1: TLabel;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
a: array[1..100] of integer;
k: integer=0;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
k := k+1;
a[k] := SpinEdit1.Value;
Label1.Caption := '第' + IntTOStr(k) + ' 位學生' + IntTOStr (A[k]) + '分'
end;
procedure TForm1.Button2Click(Sender: TObject);
var i:integer;
begin
Memo1.Clear;
for i := 1 to k do Memo1.Lines.Add(IntTOStr(a[i]))
end;
end.
標籤: software
2014年5月30日 星期五
unit test;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Spin;
type
TForm1 = class(TForm)
Button2: TButton;
Label1: TLabel;
Edit1: TEdit;
Button1: TButton;
SpinEdit1: TSpinEdit;
SpinEdit2: TSpinEdit;
Button3: TButton;
Button4: TButton;
procedure Button2Click(Sender: TObject);
procedure Label1MouseEnter(Sender: TObject);
procedure Label1MouseLeave(Sender: TObject);
procedure Button1Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure Button4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button2Click(Sender: TObject);
begin
ShowMessage('Hello..World')
end;
procedure TForm1.Label1MouseEnter(Sender: TObject);
begin
label1.Font.Color := clRed
end;
procedure TForm1.Label1MouseLeave(Sender: TObject);
begin
label1.font.color := ClBlack
end;
//顥示訊息
procedure TForm1.Button1Click(Sender: TObject);
begin
ShowMessage(Edit1.text)
end;
//計算累加
procedure TForm1.Button3Click(Sender: TObject);
var i,sum: integer;
begin
sum := 0;
for i:= SpinEdit1.Value to SpinEdit2.value do sum :=sum + i ;
Showmessage (InttoStr(sum));
end;
// 計算偶數
procedure TForm1.Button4Click(Sender: TObject);
var i,sum: integer;
begin
sum := 0;
for i:= SpinEdit1.Value to SpinEdit2.value do if (i mod 2 = 0) then sum :=sum + i ;
Showmessage (InttoStr(sum));
end;
end.
標籤: software

