File: ChimericTranscript.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 (19 lines) | stat: -rw-r--r-- 488 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
#ifndef CODE_ChimericTranscript
#define CODE_ChimericTranscript

#include "IncludeDefine.h"
#include "Parameters.h"
#include "Transcript.h"

class ChimericTranscript
{//
    public:
        Transcript  **chTrs; //all chimeric transcripts
        uint        nCh;     //number of recorded (best) chimeric transcripts
        uint        nChSize;  //size of the chTrs array, will be increased if nCh > nChSize

        ChimericTranscript(Parameters &Pin); //allocate
    private:
};

#endif