| 164 | |
| 165 | template <typename T> |
| 166 | void set_sequence_length(T& seq, SeqLen length) |
| 167 | { |
| 168 | #ifdef CLASSIC_MAPPING |
| 169 | seq.length(length); |
| 170 | #elif defined(CPP11_MAPPING) |
| 171 | seq.resize(length); |
| 172 | #endif |
| 173 | } |
| 174 | |
| 175 | std::ostream& operator<<(std::ostream& os, FlightType value) |
| 176 | { |
no test coverage detected