Skip to content

Commit

Permalink
fix: remove trace
Browse files Browse the repository at this point in the history
  • Loading branch information
rroutsong committed Jul 17, 2024
1 parent 0e00d8b commit d0211f9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,6 @@ def valid_input(sheet):
if not os.path.exists(row['DNA']):
raise argparse.ArgumentTypeError(f"Sample sheet path `{row['DNA']}` does not exist")
if 'RNA' in row and not row['RNA'] in ('', None, 'None'):
import ipdb; ipdb.set_trace()
RNA_included = True
row['RNA'] = os.path.abspath(row['RNA'])
if not os.path.exists(row['RNA']):
Expand Down

0 comments on commit d0211f9

Please sign in to comment.