Пример #1
0
 def to_exons(self, offset):
     """
     Go through this contiVec to identify the exons using base coverage (.baseC)
     and alt junction evidence (.altC)
     Returns exons found.
     """
     return c_branch.exon_finding(baseC=self.baseC, altC_neg=self.altC_neg,
                                  altC_pos=self.altC_pos, size=len(self.baseC),
                                  threshSplit=2, threshBase=0, offset=offset)
Пример #2
0
 def to_exons(self, offset):
     """
     Go through this contiVec to identify the exons using base coverage (.baseC)
     and alt junction evidence (.altC)
     Returns exons found.
     """
     return c_branch.exon_finding(baseC=self.baseC, altC_neg=self.altC_neg,
                                  altC_pos=self.altC_pos, size=len(self.baseC),
                                  threshSplit=2, threshBase=0, offset=offset)