Exemple #1
0
 public Transcript(string id, Chromosome chrom, string strand, int trans_start, int trans_end, Gene gene)
     : this(id, chrom, strand, trans_start, trans_end, gene, "", "", -1, -1)
 {
     this.gene = gene;
 }
Exemple #2
0
 public Transcript(string id, Chromosome chrom, string strand, int trans_start, int trans_end, Gene gene, string name, string biotype, int start_codon_start, int stop_codon_start)
     : base(id, chrom, strand, trans_start, trans_end, name, biotype)
 {
     this.gene = gene;
     this.start_codon_start = start_codon_start;
     this.stop_codon_start  = stop_codon_start;
 }