def __init__(self):
     self.notify = DirectNotifyGlobal.directNotify.newCategory("TTSequenceList")
     sequenceListURL = config.GetString("blacklist-sequence-url", "")
     if sequenceListURL == "":
         self.notify.warning("No Sequence BL URL specified! Continuing with local sequence.")
         SequenceList.__init__(self, self.loadSquencesLocally())
     else:
         SequenceList.__init__(self, self.downloadSequences(sequenceListURL))
Example #2
0
 def __init__(self):
     self.notify = DirectNotifyGlobal.directNotify.newCategory('TTSequenceList')
     sequenceListURL = config.GetString('blacklist-sequence-url', '')
     if sequenceListURL == '':
         self.notify.warning('No Sequence BL URL specified! Continuing with local sequence.')
         SequenceList.__init__(self, self.loadSquencesLocally())
     else:
         SequenceList.__init__(self, self.downloadSequences(sequenceListURL))
Example #3
0
 def __init__(self):
     SequenceList.__init__(self, self.BLACKLIST_FILEPATH)