File: ChimericSegment.h

package info (click to toggle)
rna-star 2.7.8a%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,076 kB
  • sloc: cpp: 20,429; awk: 483; ansic: 470; makefile: 181; sh: 31
file content (23 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (3)
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