コード例 #1
0
 def find(self, seq, threshold=None, offset=0):
     """
     Search the given sequence for matches with scores less than or
     equal to the given threshold.  If no threshold given, assume
     exact match to IUPAC motif.
     """
     if threshold is None:
         threshold = len(self)
     return _motility.find_pwm(seq, self._m, threshold, offset=offset)
コード例 #2
0
ファイル: objects.py プロジェクト: dib-lab/motility
 def find(self, seq, threshold=None, offset=0):
     """
     Search the given sequence for matches with scores less than or
     equal to the given threshold.  If no threshold given, assume
     exact match to IUPAC motif.
     """
     if threshold is None:
         threshold = len(self)
     return _motility.find_pwm(seq, self._m, threshold, offset=offset)
コード例 #3
0
 def find(self, seq, threshold, offset=0):
     """
     Search the given sequence for matches with scores less than or
     equal to the given threshold.
     """
     return _motility.find_pwm(seq, self._m, threshold, offset=offset)
コード例 #4
0
ファイル: objects.py プロジェクト: dib-lab/motility
 def find(self, seq, threshold, offset=0):
     """
     Search the given sequence for matches with scores less than or
     equal to the given threshold.
     """
     return _motility.find_pwm(seq, self._m, threshold, offset=offset)