This file is indexed.

/usr/include/libMUSCLE-3.7/libMUSCLE/pwpath.h is in libmuscle-3.7-dev 3.7+4565-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
  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
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
#ifndef	PWPath_h
#define PWPath_h

/***
Each PWEdge in a PWPath specifies a column in a pair-wise (PW) alignment.
"Path" is by analogy with the path through an HMM.
Edge types are:

	'M'		LetterA + LetterB
	'D'		LetterA + GapB
	'I'		GapB + LetterA

The mnemomic is Match, Delete, Insert (with respect to A).
Here is a global alignment of sequences A and B.

	A:	AMQT-F
	B:	-M-TIF

The path for this example is:

	Edge	cType	uPrefixLengthA	uPrefixLengthB
	0		D		1				0
	1		M		2				1
	2		D		3				1
	3		M		4				2
	4		I		4				3
	5		M		5				4

Given the starting positions in each alignment (e.g., column zero for
a global alignment), the prefix length fields are redundant; they are
included only for convenience and as a sanity check, we are not trying
to optimize for speed or space here. We use prefix lengths rather than
column indexes because of the problem of representing the special case
of a gap in the first position.
***/

namespace muscle {

class Seq;
class MSA;
class SatchmoParams;
class PW;
class TextFile;
class PWScore;

class PWEdge
	{
public:
	char cType;
	unsigned uPrefixLengthA;
	unsigned uPrefixLengthB;

	bool Equal(const PWEdge &e) const
		{
		return uPrefixLengthA == e.uPrefixLengthA &&
		  uPrefixLengthB == e.uPrefixLengthB &&
		  cType == e.cType;
		}
	};

class PWPath
	{
// Disable compiler defaults
private:
	PWPath &operator=(const PWPath &rhs);
	PWPath(const PWPath &rhs);

public:
	PWPath();
	virtual ~PWPath();

public:
	void Clear();
	void FromStr(const char Str[]);
	void Copy(const PWPath &Path);
	void AppendEdge(const PWEdge &Edge);
	void AppendEdge(char cType, unsigned uPrefixLengthA, unsigned uPrefixLengthB);
	void PrependEdge(const PWEdge &Edge);
	unsigned GetEdgeCount() const { return m_uEdgeCount; }
	const PWEdge &GetEdge(unsigned uEdgeIndex) const;
	void Validate(const PWScore &PWS) const;
	void Validate() const;
	void LogMe() const;
	void FromFile(TextFile &File);
	void ToFile(TextFile &File) const;
	void FromMSAPair(const MSA &msaA, const MSA &msaB);
	void AssertEqual(const PWPath &Path) const;
	bool Equal(const PWPath &Path) const;
	unsigned GetMatchCount() const;
	unsigned GetDeleteCount() const;
	unsigned GetInsertCount() const;

private:
	void ExpandPath(unsigned uAdditionalEdgeCount);

private:
	unsigned m_uEdgeCount;
	unsigned m_uArraySize;
	PWEdge *m_Edges;
	};

} // namespace muscle

#endif	// PWPath_h