File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/org/biojava/nbio/structure/io/cif Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2121 <dependency >
2222 <groupId >org.rcsb</groupId >
2323 <artifactId >ciftools-java</artifactId >
24- <version >0.10.1 </version >
24+ <version >2.0.2 </version >
2525 </dependency >
2626 <dependency >
2727 <groupId >org.rcsb</groupId >
Original file line number Diff line number Diff line change @@ -903,8 +903,9 @@ public void consumeStructKeywords(StructKeywords structKeywords) {
903903 StrColumn pdbxKeywords = structKeywords .getPdbxKeywords ();
904904 // TODO what is the correct format for these?
905905 if (pdbxKeywords .isDefined ()) {
906- pdbHeader .setDescription (pdbxKeywords .values ().collect (Collectors .joining (", " )));
907- pdbHeader .setClassification (pdbxKeywords .values ().collect (Collectors .joining (", " )));
906+ String keywords = pdbxKeywords .values ().collect (Collectors .joining (", " ));
907+ pdbHeader .setDescription (keywords );
908+ pdbHeader .setClassification (keywords );
908909 }
909910 }
910911
You can’t perform that action at this time.
0 commit comments