/usr/include/bamtools/api/SamSequenceDictionary.h is in libbamtools-dev 2.4.0+dfsg-3build1.
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 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | // ***************************************************************************
// SamSequenceDictionary.h (c) 2010 Derek Barnett
// Marth Lab, Department of Biology, Boston College
// ---------------------------------------------------------------------------
// Last modified: 16 October 2011
// ---------------------------------------------------------------------------
// Provides methods for operating on a collection of SamSequence entries.
// ***************************************************************************
#ifndef SAM_SEQUENCE_DICTIONARY_H
#define SAM_SEQUENCE_DICTIONARY_H
#include "api/api_global.h"
#include "api/SamSequence.h"
#include <map>
#include <string>
#include <vector>
namespace BamTools {
typedef std::vector<SamSequence> SamSequenceContainer;
typedef SamSequenceContainer::iterator SamSequenceIterator;
typedef SamSequenceContainer::const_iterator SamSequenceConstIterator;
class API_EXPORT SamSequenceDictionary {
// ctor & dtor
public:
SamSequenceDictionary(void);
SamSequenceDictionary(const SamSequenceDictionary& other);
~SamSequenceDictionary(void);
// query/modify sequence data
public:
// adds a sequence
void Add(const SamSequence& sequence);
void Add(const std::string& name, const int& length);
// adds multiple sequences
void Add(const SamSequenceDictionary& sequences);
void Add(const std::vector<SamSequence>& sequences);
void Add(const std::map<std::string, int>& sequenceMap);
// clears all sequence entries
void Clear(void);
// returns true if dictionary contains this sequence
bool Contains(const SamSequence& sequence) const;
bool Contains(const std::string& sequenceName) const;
// returns true if dictionary is empty
bool IsEmpty(void) const;
// removes sequence, if found
void Remove(const SamSequence& sequence);
void Remove(const std::string& sequenceName);
// removes multiple sequences
void Remove(const std::vector<SamSequence>& sequences);
void Remove(const std::vector<std::string>& sequenceNames);
// returns number of sequences in dictionary
int Size(void) const;
// retrieves a modifiable reference to the SamSequence object associated with this name
SamSequence& operator[](const std::string& sequenceName);
// retrieve STL-compatible iterators
public:
SamSequenceIterator Begin(void); // returns iterator to begin()
SamSequenceConstIterator Begin(void) const; // returns const_iterator to begin()
SamSequenceConstIterator ConstBegin(void) const; // returns const_iterator to begin()
SamSequenceIterator End(void); // returns iterator to end()
SamSequenceConstIterator End(void) const; // returns const_iterator to end()
SamSequenceConstIterator ConstEnd(void) const; // returns const_iterator to end()
// data members
private:
SamSequenceContainer m_data;
std::map<std::string, size_t> m_lookupData;
};
} // namespace BamTools
#endif // SAM_SEQUENCE_DICTIONARY_H
|