コード例 #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, startpos, donor, gff={}):
     startcodon = _handle_startcodon(startpos)
     # initialise basal Exon class
     Exon.__init__(self, startcodon, donor, gff=gff)
コード例 #5
0
ファイル: exon.py プロジェクト: dongqing7/ABFGP
 def __init__(self, startpos, donor, orf, gff={}):
     startcodon = _handle_startcodon(startpos)
     # initialise basal ExonOnOrf class
     ExonOnOrf.__init__(self, startcodon, donor, orf, gff=gff)
     self.IS_FIRST = 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,startpos,donor,gff={}):
     startcodon = _handle_startcodon(startpos)
     # initialise basal Exon class
     Exon.__init__(self,startcodon,donor,gff=gff)
コード例 #8
0
ファイル: exon.py プロジェクト: IanReid/ABFGP
 def __init__(self,startpos,donor,orf,gff={}):
     startcodon = _handle_startcodon(startpos)
     # initialise basal ExonOnOrf class
     ExonOnOrf.__init__(self,startcodon,donor,orf,gff=gff)
     self.IS_FIRST = True