We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 220737a commit 617d6ecCopy full SHA for 617d6ec
1 file changed
biojava-structure/src/main/java/org/biojava/nbio/structure/io/PDBFileParser.java
@@ -1502,8 +1502,13 @@ private void pdb_CRYST1_Handler(String line) {
1502
}
1503
1504
SpaceGroup sg = SymoplibParser.getSpaceGroup(spaceGroup);
1505
- if (sg==null) logger.warn("Space group '"+spaceGroup+"' not recognised as a standard space group");
1506
- crystallographicInfo.setSpaceGroup(sg);
+ if (sg==null) {
+ logger.warn("Space group '"+spaceGroup+"' not recognised as a standard space group");
1507
+ crystallographicInfo.setNonStandardSg(true);
1508
+ } else {
1509
+ crystallographicInfo.setSpaceGroup(sg);
1510
+ crystallographicInfo.setNonStandardSg(false);
1511
+ }
1512
1513
1514
/**
0 commit comments