diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sfac.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -359,7 +359,8 @@ struct molecule *load_molecule() } /* Only interested in atoms */ - if ( strncmp(line, "HETATM", 6) != 0 ) continue; + if ( (strncmp(line, "HETATM", 6) != 0) + && (strncmp(line, "ATOM", 4) != 0) ) continue; chomp(line); nbits = assplode(line, " ", &bits, ASSPLODE_NONE); |