Commits
This reverts commit 4ce261d78c9ccdb003269029eee1b5a5e0df99d2.
it really doesn't belong as a field. plus removing it should benefit
perf with fewer switch cases to handle.
PDBReader() now returns a list of Record where items may be either ATOM,
HETATM or TER variants.
now when printing json, it prints the tag first like this:
{"atom":{"serial":1, ...
* add RecordType: a enum(u48) which can be read directly from the first
6 bytes of a line as a little endian u48
* remove AtomRecord.record field which is now stored as Record's tag
* add Record.hetatm which is also an AtomRecord
* add Record.term which is a TermRecord
PDBReader() now returns a list of Record where items may be either ATOM,
HETATM or TER variants.
now when printing json, it prints the tag first like this:
{"atom":{"serial":1, ...
* add RecordType: a enum(u48) which can be read directly from the first
6 bytes of a line as a little endian u48
* remove AtomRecord.record field which is now stored as Record's tag
* add Record.hetatm which is also an AtomRecord
* add Record.term which is a TermRecord