a fast method of reading data from PDB files

バージョン 1.2.0.0 (2.39 KB) 作成者: Evan
This file is a blazingly fast method of reading PDB files
ダウンロード: 495
更新 2012/6/26

ライセンスの表示

This is the fastest way I know to read in a PDB. Strings are conveniently stored as cell variables, and numbers are stored as matrices. Unfortunately there is no faster way that I am aware of to convert text to numbers, so there is an upper limit in matlab for reading a PDB.

To speed up the program, comment out any lines for data not being used. Commenting one line that converts numeric data speeds the program up by roughly 7-8%.

example usage : this plots the atoms of 3IJU.pdb

atoms = fastPDBRead('3IJU.pdb')
plot3(atoms.X, atoms.Y, atoms.Z, '.');

引用

Evan (2024). a fast method of reading data from PDB files (https://www.mathworks.com/matlabcentral/fileexchange/35009-a-fast-method-of-reading-data-from-pdb-files), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersChemistry についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.2.0.0

very small and silly tweak to make it read a wider variety of files

1.1.0.0

I revised the previous version so that it reads any atomtype for any file, and it reads the comment section at the end of each line (in charmm this is the chain name, in Avogadro this is the element symbol, and so on)

1.0.0.0