예제 #1
0
 public Gene(string id, Chromosome chrom, string strand, int gene_start, int gene_end)
     : this(id, chrom, strand, gene_start, gene_end, "", "")
 {
 }
예제 #2
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;
 }
예제 #3
0
 public Gene(string id, Chromosome chrom, string strand, int gene_start, int gene_end, string name, string biotype)
     : base(id, chrom, strand, gene_start, gene_end, name, biotype)
 {
 }
예제 #4
0
 public Insertion(Chromosome chrom, int position, string id, string reference, string alternate, double qual, double allele_frequency, int depth)
     : base(chrom, position, id, reference, alternate, qual, allele_frequency, depth)
 {
 }