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
|
/* Copyright (C) 2012 Ion Torrent Systems, Inc. All Rights Reserved */
//! @file ExtendedReadInfo.h
//! @ingroup VariantCaller
//! @brief HP Indel detection
#ifndef EXTENDEDREADINFO_H
#define EXTENDEDREADINFO_H
#include <vector>
#include "InputStructures.h"
#include "ExtendParameters.h"
#include "AlleleParser.h"
using namespace std;
struct Alignment;
void UnpackOnLoad(Alignment *rai, const InputStructures &global_context, const ExtendParameters& parameters);
//! @brief Creates a stack of reads that provide evidence in the case of our candidate variant
void StackUpOneVariant(vector<const Alignment *>& read_stack, int variant_start_pos, int variant_end_pos,
const ExtendParameters ¶meters, const PositionInProgress& bam_position);
#endif //EXTENDEDREADINFO_H
|