예제 #1
0
파일: exon.py 프로젝트: dongqing7/ABFGP
 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
예제 #2
0
파일: exon.py 프로젝트: IanReid/ABFGP
 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
예제 #3
0
파일: exon.py 프로젝트: dongqing7/ABFGP
 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)
예제 #4
0
파일: exon.py 프로젝트: dongqing7/ABFGP
 def __init__(self, acceptor, endpos, gff={}):
     stopcodon = _handle_stopcodon(endpos)
     # initialise basal Exon class
     Exon.__init__(self, acceptor, stopcodon, gff=gff)
예제 #5
0
파일: exon.py 프로젝트: dongqing7/ABFGP
 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
예제 #6
0
파일: exon.py 프로젝트: IanReid/ABFGP
 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)
예제 #7
0
파일: exon.py 프로젝트: IanReid/ABFGP
 def __init__(self,acceptor,endpos,gff={}):
     stopcodon  = _handle_stopcodon(endpos)
     # initialise basal Exon class
     Exon.__init__(self,acceptor,stopcodon,gff=gff)
예제 #8
0
파일: exon.py 프로젝트: IanReid/ABFGP
 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