Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Public Member Functions | Protected Member Functions | Private Attributes | Friends | List of all members
core::fragment::FragSet Class Referenceabstract

The FragSet: (Interface Definition – Virtual BaseClass ) More...

#include <FragSet.hh>

Inheritance diagram for core::fragment::FragSet:
Inheritance graph
[legend]
Collaboration diagram for core::fragment::FragSet:
Collaboration graph
[legend]

Public Member Functions

 FragSet ()
 
virtual ~FragSet ()
 
virtual FragSetOP clone () const =0
 clone and copy the pointer of all Frames (Frames will not be copied) More...
 
virtual FragSetOP empty_clone () const =0
 create an empty clone More...
 
virtual FrameIterator begin () const =0
 iterate over contents More...
 
virtual FrameIterator end () const =0
 
virtual Size frames (core::Size pos, FrameList &frames) const
 appends frames at sequence position pos to frames, returns nr of frames added More...
 
virtual Size region_simple (core::Size start, core::Size end, FrameList &frames) const
 returns fragments that exactly span seq_pos start...end More...
 
virtual Size region_all (core::Size start, core::Size end, core::Size min_overlap, core::Size min_length, FrameList &frames) const
 return a list of frames that all sample the specified region, assume all motions are allowed More...
 
virtual Size region (kinematics::MoveMap const &move_map, core::Size start, core::Size end, core::Size min_overlap, core::Size min_length, FrameList &frames) const =0
 the region thing has to be thought-over. How do we really want to sample fragments? for now, we ignore everything in this call and just return frags that have "start" as there specified start() entry. More...
 
virtual void generate_insert_map (kinematics::MoveMap const &mm, InsertMap &insert_map, InsertSize &insert_size) const
 InsertMap and InsertSize gives quick overview which residues can be affected by fragments. insert_map — list of start-positions, insert_size corresponding list of longest fragment at position x. More...
 
Size max_pos () const
 returns the maximal sequence position that can be affected by fragments in this set More...
 
Size min_pos () const
 returns the first sequence position that can be affected by fragments in this set More...
 
Size max_frag_length () const
 returns the longest fragment stored in this FragSet. More...
 
void add (FrameOP aFrame)
 add a single frame. if compatible frame is already in set the frames will be merged More...
 
void add (FrameList const &frames)
 add all Frames in list More...
 
void add (FragSet const &frames)
 add all Frames in FragSet More...
 
void add (FragID const &)
 add single fragment More...
 
void add (FragID_List &list)
 
void insert_fragID_list (FragID_List &list)
 add all fragments in FragID_List More...
 
Size size () const
 returns total size–> counts together all frags in each frame More...
 
Size nr_frames () const
 counts number of frames ( slow! - it really counts ) More...
 
virtual bool empty () const =0
 

Protected Member Functions

void set_max_frag_length (Size setting)
 setter for max_frag_length_ More...
 
void set_max_pos (Size pos)
 
void set_min_pos (Size pos)
 
virtual void add_ (FrameOP aFrame)=0
 storage classes have to overload this one to add frames to their container More...
 

Private Attributes

Size min_pos_
 
Size max_pos_
 
Size max_frag_length_
 

Friends

std::ostream & operator<< (std::ostream &out, FragSet const &frags)
 

Detailed Description

The FragSet: (Interface Definition – Virtual BaseClass )

Definition at line 70 of file FragSet.hh.

Constructor & Destructor Documentation

core::fragment::FragSet::FragSet ( )
inline

Definition at line 74 of file FragSet.hh.

virtual core::fragment::FragSet::~FragSet ( )
inlinevirtual

Definition at line 77 of file FragSet.hh.

Member Function Documentation

void core::fragment::FragSet::add ( FrameOP  aFrame)
void core::fragment::FragSet::add ( FrameList const &  frames)

add all Frames in list

Definition at line 235 of file FragSet.cc.

void core::fragment::FragSet::add ( FragSet const &  frames)

add all Frames in FragSet

Definition at line 242 of file FragSet.cc.

References begin(), and end().

void core::fragment::FragSet::add ( FragID const &  frag_id)
void core::fragment::FragSet::add ( FragID_List list)
inline

Definition at line 154 of file FragSet.hh.

References insert_fragID_list().

virtual void core::fragment::FragSet::add_ ( FrameOP  aFrame)
protectedpure virtual

storage classes have to overload this one to add frames to their container

Implemented in core::fragment::ConstantLengthFragSet, core::fragment::FragSetCollection, and core::fragment::OrderedFragSet.

virtual FrameIterator core::fragment::FragSet::begin ( ) const
pure virtual
virtual FragSetOP core::fragment::FragSet::clone ( ) const
pure virtual

clone and copy the pointer of all Frames (Frames will not be copied)

Implemented in core::fragment::ConstantLengthFragSet, core::fragment::FragSetCollection, and core::fragment::OrderedFragSet.

Referenced by core::fragment::merge_frags().

virtual bool core::fragment::FragSet::empty ( ) const
pure virtual
virtual FragSetOP core::fragment::FragSet::empty_clone ( ) const
pure virtual
virtual FrameIterator core::fragment::FragSet::end ( ) const
pure virtual
virtual Size core::fragment::FragSet::frames ( core::Size  pos,
FrameList frames 
) const
inlinevirtual

appends frames at sequence position pos to frames, returns nr of frames added

Reimplemented in core::fragment::OrderedFragSet.

Definition at line 91 of file FragSet.hh.

References region_simple().

Referenced by core::fragment::merge_frags(), and protocols::loops::select_loop_frags().

void core::fragment::FragSet::generate_insert_map ( kinematics::MoveMap const &  mm,
InsertMap insert_map,
InsertSize insert_size 
) const
virtual

InsertMap and InsertSize gives quick overview which residues can be affected by fragments. insert_map — list of start-positions, insert_size corresponding list of longest fragment at position x.

Definition at line 147 of file FragSet.cc.

References core::sequence::end, core::kinematics::MoveMap::get_bb(), core::io::serialization::size(), and core::fragment::tr().

Referenced by protocols::loops::select_loop_frags().

void core::fragment::FragSet::insert_fragID_list ( FragID_List list)

add all fragments in FragID_List

Definition at line 82 of file FragSet.cc.

References core::fragment::tr().

Referenced by add().

Size core::fragment::FragSet::max_frag_length ( ) const
inline
Size core::fragment::FragSet::max_pos ( ) const
inline

returns the maximal sequence position that can be affected by fragments in this set

Definition at line 126 of file FragSet.hh.

References max_pos_.

Referenced by core::fragment::FragSetCollection::add_fragset(), core::fragment::chop_fragments(), core::fragment::SecondaryStructure::compute_fractions(), core::fragment::compute_per_residue_coverage(), and core::fragment::merge_frags().

Size core::fragment::FragSet::min_pos ( ) const
inline

returns the first sequence position that can be affected by fragments in this set

Definition at line 130 of file FragSet.hh.

References min_pos_.

Referenced by core::fragment::FragSetCollection::add_fragset().

Size core::fragment::FragSet::nr_frames ( ) const

counts number of frames ( slow! - it really counts )

Definition at line 186 of file FragSet.cc.

References core::sequence::end.

virtual Size core::fragment::FragSet::region ( kinematics::MoveMap const &  move_map,
core::Size  start,
core::Size  end,
core::Size  min_overlap,
core::Size  min_length,
FrameList frames 
) const
pure virtual

the region thing has to be thought-over. How do we really want to sample fragments? for now, we ignore everything in this call and just return frags that have "start" as there specified start() entry.

Implemented in core::fragment::ConstantLengthFragSet, core::fragment::FragSetCollection, and core::fragment::OrderedFragSet.

Size core::fragment::FragSet::region_all ( core::Size  start,
core::Size  end,
core::Size  min_overlap,
core::Size  min_length,
FrameList frames 
) const
virtual

return a list of frames that all sample the specified region, assume all motions are allowed

Definition at line 62 of file FragSet.cc.

References core::kinematics::MoveMap::set_bb(), core::kinematics::MoveMap::set_chi(), and core::kinematics::MoveMap::set_jump().

Referenced by region_simple().

virtual Size core::fragment::FragSet::region_simple ( core::Size  start,
core::Size  end,
FrameList frames 
) const
inlinevirtual

returns fragments that exactly span seq_pos start...end

Definition at line 96 of file FragSet.hh.

References region_all().

Referenced by frames().

void core::fragment::FragSet::set_max_frag_length ( Size  setting)
inlineprotected

setter for max_frag_length_

Definition at line 173 of file FragSet.hh.

References max_frag_length_.

Referenced by core::fragment::FragSetCollection::add_fragset(), and core::fragment::ConstantLengthFragSet::ConstantLengthFragSet().

void core::fragment::FragSet::set_max_pos ( Size  pos)
inlineprotected

Definition at line 177 of file FragSet.hh.

References max_pos_.

Referenced by core::fragment::FragSetCollection::add_fragset().

void core::fragment::FragSet::set_min_pos ( Size  pos)
inlineprotected

Definition at line 178 of file FragSet.hh.

References min_pos_.

Referenced by core::fragment::FragSetCollection::add_fragset().

Size core::fragment::FragSet::size ( ) const

returns total size–> counts together all frags in each frame

Definition at line 178 of file FragSet.cc.

References core::sequence::end.

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  out,
FragSet const &  frags 
)
friend

Definition at line 248 of file FragSet.cc.

Member Data Documentation

Size core::fragment::FragSet::max_frag_length_
private

Definition at line 186 of file FragSet.hh.

Referenced by max_frag_length(), and set_max_frag_length().

Size core::fragment::FragSet::max_pos_
private

Definition at line 185 of file FragSet.hh.

Referenced by max_pos(), and set_max_pos().

Size core::fragment::FragSet::min_pos_
private

Definition at line 184 of file FragSet.hh.

Referenced by min_pos(), and set_min_pos().


The documentation for this class was generated from the following files: