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?
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?
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.
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
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.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
hi how can i get e6 protein human papiloma virus 3D structure from PDBank?
From this search. If you need introduction to PDB data then you can find that here.