/usr/include/libMems-1.6/libMems/GappedAlignment.h is in libmems-1.6-dev 1.6.0+4725-2.
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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | /*******************************************************************************
* $Id: GappedAlignment.h,v 1.12 2004/04/19 23:10:50 darling Exp $
* This file is copyright 2002-2007 Aaron Darling and authors listed in the AUTHORS file.
* This file is licensed under the GPL.
* Please see the file called COPYING for licensing details.
* **************
******************************************************************************/
#ifndef __GappedAlignment_h__
#define __GappedAlignment_h__
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "libGenome/gnFilter.h"
#include "libGenome/gnSequence.h"
#include "libMems/SparseAbstractMatch.h"
#include "libMems/AbstractGappedAlignment.h"
#include "libMems/Memory.h"
#include <iostream>
namespace mems {
class GappedAlignment : public AbstractGappedAlignment< SparseAbstractMatch<> >
{
public:
GappedAlignment();
GappedAlignment( uint seq_count, gnSeqI align_length );
GappedAlignment* Clone() const { return new GappedAlignment( *this ); }
GappedAlignment* Copy() const;
virtual void Free();
void SetAlignment( const std::vector< std::string >& seq_align );
/**
* Writes this GappedAlignment to the specified output stream (e.g. cout).
*/
friend std::ostream& operator<<(std::ostream& os, const GappedAlignment& ga); //write to source.
/**
* Reads a GappedAlignment from the specified input stream (e.g. cin).
*/
friend std::istream& operator>>(std::istream& is, GappedAlignment& ga); //read from source
// Inherited methods from AbstractMatch:
virtual void Invert();
virtual void CropStart(gnSeqI crop_amount);
virtual void CropEnd(gnSeqI crop_amount);
virtual void CropLeft(gnSeqI crop_amount, uint seqI);
virtual void CropRight(gnSeqI crop_amount, uint seqI);
void GetAlignment( std::vector< bitset_t >& align_matrix ) const;
friend const std::vector<std::string>& GetAlignment( const GappedAlignment& ga, const std::vector< genome::gnSequence* >& seq_table );
void GetColumn( gnSeqI col, std::vector<gnSeqI>& pos, std::vector<bool>& column ) const;
/**
* Splits the alignment before the specified column. The left-side remains in "this" GappedAlignment,
* and the right side is returned as a new GappedAlignment
*/
virtual AbstractMatch* Split( gnSeqI before_column );
virtual bool IsGap( uint seq, gnSeqI col ) const;
void swap( GappedAlignment& other ){ swap(&other); }
protected:
// for use by derived classes in order to swap contents
void swap( GappedAlignment* other ){
std::swap( align_matrix, other->align_matrix );
AbstractGappedAlignment< SparseAbstractMatch<> >::swap( other );
}
std::vector< std::string > align_matrix;
void CropStartCoords(gnSeqI crop_amount);
void CropEndCoords(gnSeqI crop_amount);
};
inline
GappedAlignment* GappedAlignment::Copy() const
{
return m_allocateAndCopy( *this );
}
inline
void GappedAlignment::Free()
{
m_free(this);
}
inline
void GappedAlignment::Invert(){
const genome::gnFilter* rc_filter = genome::gnFilter::DNAComplementFilter();
for(uint startI = 0; startI < SeqCount(); startI++)
rc_filter->ReverseFilter( align_matrix[ startI ] );
AbstractGappedAlignment< SparseAbstractMatch<> >::Invert();
}
inline
void GappedAlignment::CropStartCoords(gnSeqI crop_amount){
if( crop_amount > AlignmentLength() )
Throw_gnEx( genome::SeqIndexOutOfBounds() );
for( uint i=0; i < SeqCount(); i++ ){
gnSeqI char_count = 0;
for( gnSeqI cropI = 0; cropI < crop_amount; cropI++ )
if( align_matrix[i][cropI] != '-' )
char_count++;
if( Start(i) > 0 )
SetStart(i, Start(i) + char_count);
SetLength(Length(i)-char_count, i);
if( Length(i) == 0 )
SetLeftEnd(i, NO_MATCH);
}
SetAlignmentLength( AlignmentLength() - crop_amount );
}
inline
void GappedAlignment::CropStart(gnSeqI crop_amount){
CropStartCoords(crop_amount);
for( uint i=0; i < SeqCount(); i++ )
align_matrix[ i ] = align_matrix[ i ].substr( crop_amount );
}
inline
void GappedAlignment::CropEndCoords(gnSeqI crop_amount){
if( crop_amount > AlignmentLength() )
Throw_gnEx( genome::SeqIndexOutOfBounds() );
SetAlignmentLength( AlignmentLength() - crop_amount );
for( uint i=0; i < SeqCount(); i++ ){
gnSeqI char_count = 0;
for( gnSeqI cropI = align_matrix[i].length() - crop_amount; cropI < align_matrix[i].length(); cropI++ )
if( align_matrix[i][cropI] != '-' )
char_count++;
if( Start(i) < 0 )
SetStart(i, Start(i)-char_count);
SetLength(Length(i)-char_count, i);
if( Length(i) == 0 )
SetLeftEnd(i, NO_MATCH);
}
}
inline
void GappedAlignment::CropEnd(gnSeqI crop_amount){
CropEndCoords(crop_amount);
// this code doesn't free up memory in Windows release builds
// for( uint i=0; i < SeqCount(); i++ )
// {
// align_matrix[ i ].resize( AlignmentLength() );
// align_matrix[ i ].reserve( AlignmentLength() );
// }
std::vector< std::string > new_matrix(SeqCount());
for( uint i=0; i < SeqCount(); i++ )
new_matrix[ i ] = align_matrix[ i ].substr( 0, AlignmentLength() );
std::swap( new_matrix, align_matrix );
}
inline
void GappedAlignment::CropLeft(gnSeqI crop_amount, uint seqI)
{
// count "crop_amount" characters into seqI and crop there
size_t left_col = 0;
if( Orientation(seqI) == AbstractMatch::forward )
{
for( ; crop_amount > 0 && left_col < align_matrix[seqI].size(); ++left_col )
if( align_matrix[seqI][left_col] != '-' )
--crop_amount;
CropStart(left_col);
}else{
left_col = align_matrix[seqI].size();
for( ; crop_amount > 0 && left_col > 0; --left_col )
if( align_matrix[seqI][left_col-1] != '-' )
--crop_amount;
CropEnd(AlignmentLength()-left_col);
}
}
inline
void GappedAlignment::CropRight(gnSeqI crop_amount, uint seqI)
{
// TODO: remove the dependency on Invert() since it will be slow
Invert();
CropLeft(crop_amount, seqI);
Invert();
}
inline
void GappedAlignment::GetAlignment( std::vector< bitset_t >& align_matrix ) const
{
align_matrix = std::vector< bitset_t >( this->align_matrix.size(), bitset_t(this->AlignmentLength(), false) );
for( size_t seqI = 0; seqI < this->align_matrix.size(); seqI++ )
{
if( LeftEnd(seqI) == NO_MATCH )
continue;
for( std::string::size_type charI = 0; charI < this->align_matrix[seqI].size(); charI++ )
if( this->align_matrix[seqI][charI] != '-' )
align_matrix[seqI].set(charI);
}
}
inline
AbstractMatch* GappedAlignment::Split( gnSeqI before_column )
{
GappedAlignment ga_tmp(SeqCount(), AlignmentLength());
GappedAlignment* ga = ga_tmp.Copy();
for( size_t seqI = 0; seqI < SeqCount(); seqI++ )
{
ga->SetStart( seqI, Start(seqI) );
ga->SetLength( Length(seqI), seqI );
}
std::swap(ga->align_matrix, align_matrix);
ga->CropStartCoords(before_column);
std::swap(ga->align_matrix, align_matrix);
ga->align_matrix.resize(SeqCount());
for( size_t seqI = 0; seqI < SeqCount(); seqI++ )
ga->align_matrix[seqI] = align_matrix[seqI].substr( before_column );
ga->SetAlignmentLength( AlignmentLength()-before_column );
CropEnd(AlignmentLength()-before_column);
return ga;
}
const std::vector<std::string>& GetAlignment( const GappedAlignment& ga, const std::vector< genome::gnSequence* >& seq_table );
inline
const std::vector<std::string>& GetAlignment( const GappedAlignment& ga, const std::vector< genome::gnSequence* >& seq_table )
{
return ga.align_matrix;
}
inline
void GappedAlignment::GetColumn( gnSeqI col, std::vector<gnSeqI>& pos, std::vector<bool>& column ) const
{
pos = std::vector<gnSeqI>(SeqCount(), NO_MATCH);
column = std::vector<bool>(SeqCount(), false);
for( uint seqI = 0; seqI < SeqCount(); seqI++ )
{
if( align_matrix[seqI][col] != '-' )
column[seqI] = true;
gnSeqI count = 0;
for( size_t colI = 0; colI <= col; colI++ )
if( align_matrix[seqI][colI] != '-' )
count++;
if( count > 0 )
{
if( Orientation(seqI) == forward )
pos[seqI] = LeftEnd(seqI) + count - 1;
else if( Orientation(seqI) == reverse )
pos[seqI] = RightEnd(seqI) - count + 1;
}
}
}
inline
bool GappedAlignment::IsGap( uint seq, gnSeqI col ) const
{
return align_matrix[seq][col] == '-';
}
}
namespace std {
template<> inline
void swap( mems::GappedAlignment& a, mems::GappedAlignment& b )
{
a.swap(b);
}
}
#endif // __GappedAlignment_h__
|