Skip to content

Commit

Permalink
fix #143 removes checking for non-existent arguments when running in …
Browse files Browse the repository at this point in the history
…configure
  • Loading branch information
rhysnewell committed Sep 13, 2023
1 parent 2c61ba1 commit 5d27787
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aviary/modules/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ def __init__(self,
except AttributeError:
self.reference_filter = 'none'
self.gold_standard = 'none'
self.min_read_size = args.min_read_size
self.min_mean_q = args.min_mean_q
self.keep_percent = args.keep_percent
self.skip_qc = args.skip_qc
self.min_read_size = 0
self.min_mean_q = 0
self.keep_percent = 100
self.skip_qc = False

try:
self.gsa_mappings = args.gsa_mappings
Expand Down

0 comments on commit 5d27787

Please sign in to comment.