Member Site › Forums › PyRosetta › PyRosetta – General › Concatenate Pose › Reply To: Concatenate Pose
Hi Jared,
I just double checked and indeed as Steven mentioned, member functions of Pose: append_residue_by_jump pose.append_residue_by_bond, replace_residue, insert_residue, copy_segment and other are in the current version of PyRosetta. How did you check for then? The easiest way that I would recommend is to create instance of Pose object like: pose = rosetta.Pose() and then in iPython type:
‘pose.append’ and then hit ‘tab’ key twice – then you should see list of all member functions that start with ‘append’.
Now, regarding exporting all wrapped functions: you can use standard python notation like: ‘from rosetta.core.pose import *’ – this will import all classes/functions that is wrapped in core.pose.
Let us know if you need more help with this.