2 C Read the PDB file and convert the peptide geometry into virtual-chain
4 implicit real*8 (a-h,o-z)
9 include 'COMMON.INTERACT'
10 include 'COMMON.IOUNITS'
12 include 'COMMON.NAMES'
13 character*3 seq,atom,res
20 read (ipdbin,'(a80)',end=10) card
21 if (card(:3).eq.'END') then
23 else if (card(:3).eq.'TER') then
28 c write (iout,*) "Chain ended",ires,ishift,ires_old
29 call sccenter(ires,iii,sccor)
31 C Fish out the ATOM cards.
32 if (index(card(1:4),'ATOM').gt.0) then
33 read (card(14:16),'(a3)') atom
34 if (atom.eq.'CA' .or. atom.eq.'CH3') then
35 C Calculate the CM of the preceding residue.
37 call sccenter(ires,iii,sccor)
40 c write (iout,'(a80)') card
41 read (card(24:26),*) ires
42 read (card(18:20),'(a3)') res
45 if (res.ne.'GLY' .and. res.ne. 'ACE') then
49 c write (iout,*) "ires",ires," ibeg",ibeg," ishift",ishift
51 else if (ibeg.eq.2) then
53 ishift=-ires_old+ires-1
54 c write (iout,*) "New chain started",ires,ishift
58 c write (2,*) "ires",ires," ishift",ishift
59 if (res.eq.'ACE') then
62 itype(ires)=rescode(ires,res,0)
64 read(card(31:54),'(3f8.3)') (c(j,ires),j=1,3)
65 write (iout,'(2i3,2x,a,3f8.3)')
66 & ires,itype(ires),res,(c(j,ires),j=1,3)
69 sccor(j,iii)=c(j,ires)
71 else if (atom.ne.'O '.and.atom(1:1).ne.'H' .and.
72 & atom.ne.'N ' .and. atom.ne.'C ') then
74 read(card(31:54),'(3f8.3)') (sccor(j,iii),j=1,3)
78 10 write (iout,'(a,i5)') ' Nres: ',ires
79 C Calculate dummy residue coordinates inside the "chain" of a multichain
83 c write (iout,*) i,itype(i)
84 if (itype(i).eq.ntyp1) then
85 c write (iout,*) "dummy",i,itype(i)
87 c(j,i)=((c(j,i-1)+c(j,i+1))/2+2*c(j,i-1)-c(j,i-2))/2
88 c c(j,i)=(c(j,i-1)+c(j,i+1))/2
93 C Calculate the CM of the last side chain.
94 call sccenter(ires,iii,sccor)
97 if (itype(nres).ne.10) then
101 dcj=c(j,nres-2)-c(j,nres-3)
102 c(j,nres)=c(j,nres-1)+dcj
103 c(j,2*nres)=c(j,nres)
113 c(j,2*nres)=c(j,nres)
115 if (itype(1).eq.ntyp1) then
124 C Calculate internal coordinates.
126 write (iout,'(2i3,2x,a,3f8.3,5x,3f8.3)')
127 & ires,itype(ires),restyp(itype(ires)),(c(j,ires),j=1,3),
128 & (c(j,nres+ires),j=1,3)
130 call int_from_cart(.true.,.false.)
133 dc(j,i)=c(j,i+1)-c(j,i)
134 dc_norm(j,i)=dc(j,i)*vbld_inv(i+1)
139 dc(j,i+nres)=c(j,i+nres)-c(j,i)
140 dc_norm(j,i+nres)=dc(j,i+nres)*vbld_inv(i+nres)
142 c write (iout,*) i,(dc(j,i+nres),j=1,3),(dc_norm(j,i+nres),j=1,3),
146 C Copy the coordinates to reference coordinates
158 cc write (iout,*) "spraw lancuchy",(c(j,i),j=1,3)
160 if ((itype(i-1).eq.ntyp1).and.(i.gt.2)) then
163 c write (iout,*) "spraw lancuchy",(c(j,i),j=1,3)
169 cref(j,i+nres,cou)=c(j,i+nres)
171 chain_rep(j,lll,kkk)=c(j,i)
172 chain_rep(j,lll+nres,kkk)=c(j,i+nres)
177 chain_rep(j,chain_length,symetr)=chain_rep(j,chain_length,1)
178 chain_rep(j,chain_length+nres,symetr)
179 &=chain_rep(j,chain_length+nres,1)
182 if (symetr.gt.1) then
189 c write(iout,*) "tabperm", (tabperm(i,kkk),kkk=1,4)
195 c write (iout,*) i,icha
196 do lll=1,chain_length
198 if (cou.le.nres) then
200 kupa=mod(lll,chain_length)
201 iprzes=(kkk-1)*chain_length+lll
202 if (kupa.eq.0) kupa=chain_length
203 c write (iout,*) "kupa", kupa
204 cref(j,iprzes,i)=chain_rep(j,kupa,icha)
205 cref(j,iprzes+nres,i)=chain_rep(j,kupa+nres,icha)
213 C-koniec robienia kopidm
215 write (iout,*) "nowa struktura", nperm
217 write (iout,110) restyp(itype(i)),i,cref(1,i,kkk),
219 &cref(3,i,kkk),cref(1,nres+i,kkk),
220 &cref(2,nres+i,kkk),cref(3,nres+i,kkk)
222 100 format (//' alpha-carbon coordinates ',
223 & ' centroid coordinates'/
224 1 ' ', 6X,'X',11X,'Y',11X,'Z',
225 & 10X,'X',11X,'Y',11X,'Z')
226 110 format (a,'(',i3,')',6f12.5)
233 c---------------------------------------------------------------------------
234 subroutine int_from_cart(lside,lprn)
235 implicit real*8 (a-h,o-z)
237 include 'COMMON.LOCAL'
239 include 'COMMON.CHAIN'
240 include 'COMMON.INTERACT'
241 include 'COMMON.IOUNITS'
243 include 'COMMON.NAMES'
244 character*3 seq,atom,res
246 dimension sccor(3,20)
251 & 'Internal coordinates calculated from crystal structure.'
253 write (iout,'(8a)') ' Res ',' dvb',' Theta',
254 & ' Phi',' Dsc_id',' Dsc',' Alpha',
257 write (iout,'(4a)') ' Res ',' dvb',' Theta',
264 c write (iout,*) i,dist(i,i-1)
265 if (dist(i,i-1).lt.2.0D0 .or. dist(i,i-1).gt.5.0D0) then
266 write (iout,'(a,i4)') 'Bad Cartesians for residue',i
269 theta(i+1)=alpha(i-1,i,i+1)
270 if (i.gt.2) phi(i+1)=beta(i-2,i-1,i,i+1)
275 c(j,maxres2)=0.5D0*(c(j,i-1)+c(j,i+1))
280 alph(i)=alpha(nres+i,i,maxres2)
281 omeg(i)=beta(nres+i,i,maxres2,i+1)
284 & write (iout,'(a3,i4,7f10.3)') restyp(iti),i,dist(i,i-1),
285 & rad2deg*theta(i),rad2deg*phi(i),dsc(iti),di,rad2deg*alph(i),
291 write (iout,'(a3,i4,7f10.3)') restyp(iti),i,dist(i,i-1),
292 & rad2deg*theta(i),rad2deg*phi(i)
297 c---------------------------------------------------------------------------
298 subroutine sccenter(ires,nscat,sccor)
299 implicit real*8 (a-h,o-z)
301 include 'COMMON.CHAIN'
302 dimension sccor(3,20)
306 sccmj=sccmj+sccor(j,i)
308 dc(j,ires)=sccmj/nscat