Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 5 additions & 4 deletions source/src/protocols/analysis/InterfaceAnalyzerMover.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1943,10 +1943,11 @@ void InterfaceAnalyzerMover::set_interface_jump( core::Size const interface_jump
explicit_constructor_ = false;
}

//void InterfaceAnalyzerMover::set_interface( std::string const & interface ){
// dock_chains_ = core::pose::DockingPartners::docking_partners_from_string( interface );
// explicit_constructor_ = true;
//}
#ifdef PYROSETTA
void InterfaceAnalyzerMover::set_interface( std::string const & interface ){
set_interface( core::pose::DockingPartners::docking_partners_from_string( interface ) );
}
#endif

void InterfaceAnalyzerMover::set_interface( core::pose::DockingPartners const & interface ){
dock_chains_ = interface;
Expand Down
7 changes: 5 additions & 2 deletions source/src/protocols/analysis/InterfaceAnalyzerMover.hh
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,11 @@ public:
void
set_interface_jump(core::Size const interface_jump);

// void
// set_interface( std::string const & interface );
#ifdef PYROSETTA
/// @brief PyRosetta convienience function, to support usage in Bindcraft, etc.
void
set_interface( std::string const & interface );
#endif

void
set_interface( core::pose::DockingPartners const & interface );
Expand Down