/usr/include/pbseq/pbdata/alignment/CmpAlignmentImpl.hpp is in libpbdata-dev 0~20161219-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 | template<typename T_Field>
void CmpAlignment::StoreField(std::string fieldName, T_Field* fieldValues, DSLength length) {
fields[fieldName].resize(length);
memcpy(&fields[fieldName][0], fieldValues, length * sizeof(T_Field));
}
|