How Do I Download Protein Monomers From Pdb?
1
0
Entering edit mode
11.3 years ago
kadhar • 0

Hi,

I would like to download protein monomers (one chain only) from pdb. I have an input file which contains PDB IDs. what is the easy way to download monomers from PDB?

protein pdb • 8.6k views
ADD COMMENT
0
Entering edit mode

hi how can i get e6 protein human papiloma virus 3D structure from PDBank?

ADD REPLY
0
Entering edit mode

From this search. If you need introduction to PDB data then you can find that here.

ADD REPLY
0
Entering edit mode
11.3 years ago
Pappu ★ 2.1k

I answered the same question How To Download Atomic Coordinates For A Specific Chain From A Pdb File?. Please look at previous posts before posting new questions.

ADD COMMENT
0
Entering edit mode

@pappu I tried your script. It only prints up to residue number 99 from all files. How can I get the atomic coordinates of residue's no >99?

ADD REPLY
0
Entering edit mode

Can you tell me one of the pdb ids so that I can check?

ADD REPLY
0
Entering edit mode

Please check this pdb ID 3QJ5.

ADD REPLY
0
Entering edit mode

You have to remove one space after A: ' A ' . Look at grep manual..

for i in 3QJ5; do wget -c "http://www.pdb.org/pdb/download/downloadFile.do?fileFormat=pdb&compression=NO&structureId="$i -O $i.pdb; grep ATOM $i.pdb | grep ' A ' > $i_A.pdb; done

ADD REPLY
0
Entering edit mode

Thank you for your comment. This code only prints the whole pdb file.

ADD REPLY
0
Entering edit mode

PDB ATOM records are not delimited, so the solution suggested by Pappu will not work for all PDB entries. I suggest you see the How To Download Atomic Coordinates For A Specific Chain From A Pdb File? for an option which takes this into account.

ADD REPLY

Login before adding your answer.

Traffic: 2523 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6