Andrew Stirn commited on
Commit
03279e4
·
1 Parent(s): 7932f13
Files changed (1) hide show
  1. tiger.py +3 -2
tiger.py CHANGED
@@ -294,10 +294,11 @@ def tiger_exhibit(transcripts: pd.DataFrame, mode: str, check_off_targets: bool,
294
  off_target_predictions = pd.DataFrame()
295
 
296
  if mode == 'all':
297
- pass
298
 
299
- elif mode == 'titration': # TODO: and titration candidates
300
  on_target_predictions = top_guides_per_transcript(on_target_predictions)
 
301
 
302
  else:
303
  raise NotImplementedError
 
294
  off_target_predictions = pd.DataFrame()
295
 
296
  if mode == 'all':
297
+ pass # nothing to do!
298
 
299
+ elif mode == 'titration':
300
  on_target_predictions = top_guides_per_transcript(on_target_predictions)
301
+ # TODO: add titration candidates
302
 
303
  else:
304
  raise NotImplementedError