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
|
/*++
Module Name:
AlignmentAdjuster.h
Abstract:
Header for code to adjust alignments to avoid indels at ends, or overhanging contig boundaries
Authors:
Bill Bolosky, May, 2016
Environment:
User mode service.
Revision History:
Pulled out of other places in SNAP
--*/
#pragma once
#include "GenomeIndex.h"
#include "LandauVishkin.h"
#include "Read.h"
class AlignmentAdjuster {
public:
AlignmentAdjuster(const Genome *genome);
void AdjustAlignment(Read *read, SingleAlignmentResult *result);
void AdjustAlignments(Read **reads, PairedAlignmentResult *result);
private:
LandauVishkinWithCigar lv;
const Genome *genome;
};
|