| 12 | #include "ParseTools.h" //to get the isNumeric function |
| 13 | |
| 14 | KeyListOpsMethods::KeyListOpsMethods() |
| 15 | : _keyList(&_nullKeyList), |
| 16 | _column(1), |
| 17 | _nullVal("."), |
| 18 | _delimStr(","), |
| 19 | _iter(_nullKeyList.begin()), |
| 20 | _nonNumErrFlag(false), |
| 21 | _isBam(false) |
| 22 | { |
| 23 | } |
| 24 | |
| 25 | KeyListOpsMethods::KeyListOpsMethods(RecordKeyVector *keyList, int column) |
| 26 | : _keyList(keyList), |