Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes
  • Loading branch information
josemduarte committed Jan 25, 2020
commit e70f0ef8131897137cc2f6b201b2eca4ff9c662f
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class InterfaceFinder {

public static final double DEFAULT_CONTACT_CUTOFF = 6;

private static final CrystalTransform IDENTITY_TRANSFORM = new CrystalTransform(SpaceGroup.parseSpaceGroup("P1"));
private static final CrystalTransform IDENTITY_TRANSFORM = new CrystalTransform((SpaceGroup) null);
private static final boolean INCLUDE_HETATOMS = true;

private Structure structure;
Expand All @@ -43,7 +43,7 @@ public void setCutoff(double cutoff) {

/**
* Find all inter polymer-chain interfaces in the structure.
* Two chains will be considered in contact if at least a pair of atoms from each is within the
* Two chains will be considered in contact if at least a pair of atoms (one from each chain) is within the
* contact cutoff.
* @return the list of all interfaces
*/
Expand Down