|
Scaffolding
0.1
This program can assemble genome scaffolds using the pairing information in paired-end reads.
|
a predicate that is true iff the given element is (not) contained in a given container More...
#include <predicates.hpp>
Public Member Functions | |
| ContainedPredicate (const Container &_container, const bool _invert=false) | |
| constructor More... | |
| bool | operator() (const Element &e) const |
| all predicates must implement operator() | |
Public Member Functions inherited from scaffold::predicates::Predicate< Element > | |
| Predicate (const bool _invert=false) | |
| constructor | |
Public Attributes | |
| const Container & | container |
| container reference | |
Public Attributes inherited from scaffold::predicates::Predicate< Element > | |
| const bool | invert |
| indicate whether the predicate should be inverted | |
a predicate that is true iff the given element is (not) contained in a given container
changing the container will change the result of predicate checks
|
inline |
constructor
If _invert is set, then the predicate is FALSE iff the given element is in the container. No copy of the container is performed. Instead we save a reference to it.
1.8.10