1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#ifndef CODE_ChimericSegment
#define CODE_ChimericSegment
#include "IncludeDefine.h"
#include "Parameters.h"
#include "Transcript.h"
#include "ParametersChimeric.h"
class ChimericSegment
{//
public:
Parameters &P;
ParametersChimeric &pCh;
Transcript &align; //alignment
uint roS,roE,str; //start/end/strand in original read coordinates
ChimericSegment(Parameters &Pin, Transcript &alignIn); //allocate
bool segmentCheck();//check if chimeric segment is good
private:
};
#endif
|