Exemplo n.º 1
0
 def __init__(self, startpos, endpos, orf, gff={}):
     startcodon = _handle_startcodon(startpos)
     stopcodon = _handle_stopcodon(endpos)
     # initialise basal ExonOnOrf class
     ExonOnOrf.__init__(self, startcodon, stopcodon, orf, gff=gff)
     self.IS_FIRST = True
     self.IS_FINAL = True
Exemplo n.º 2
0
 def __init__(self,startpos,endpos,orf,gff={}):
     startcodon = _handle_startcodon(startpos)
     stopcodon  = _handle_stopcodon(endpos)
     # initialise basal ExonOnOrf class
     ExonOnOrf.__init__(self,startcodon,stopcodon,orf,gff=gff)
     self.IS_FIRST = True
     self.IS_FINAL = True
Exemplo n.º 3
0
 def __init__(self, startpos, endpos, gff={}):
     startcodon = _handle_startcodon(startpos)
     stopcodon = _handle_stopcodon(endpos)
     # initialise basal Exon class
     Exon.__init__(self, startcodon, stopcodon, gff=gff)
Exemplo n.º 4
0
 def __init__(self, acceptor, endpos, gff={}):
     stopcodon = _handle_stopcodon(endpos)
     # initialise basal Exon class
     Exon.__init__(self, acceptor, stopcodon, gff=gff)
Exemplo n.º 5
0
 def __init__(self, acceptor, endpos, orf, gff={}):
     stopcodon = _handle_stopcodon(endpos)
     # initialise basal ExonOnOrf class
     ExonOnOrf.__init__(self, acceptor, stopcodon, orf, gff=gff)
     self.IS_FINAL = True
Exemplo n.º 6
0
 def __init__(self,startpos,endpos,gff={}):
     startcodon = _handle_startcodon(startpos)
     stopcodon  = _handle_stopcodon(endpos)
     # initialise basal Exon class
     Exon.__init__(self,startcodon,stopcodon,gff=gff)
Exemplo n.º 7
0
 def __init__(self,acceptor,endpos,gff={}):
     stopcodon  = _handle_stopcodon(endpos)
     # initialise basal Exon class
     Exon.__init__(self,acceptor,stopcodon,gff=gff)
Exemplo n.º 8
0
 def __init__(self,acceptor,endpos,orf,gff={}):
     stopcodon  = _handle_stopcodon(endpos)
     # initialise basal ExonOnOrf class
     ExonOnOrf.__init__(self,acceptor,stopcodon,orf,gff=gff)
     self.IS_FINAL = True