OpenGene / AfterQC

Automatic Filtering, Trimming, Error Removing and Quality Control for fastq data
MIT License
206 stars 51 forks source link

question about AfterQC/preprocesser.py #36

Open emojinchuan opened 6 years ago

emojinchuan commented 6 years ago

Hi , in preprocesser.py line 498 , your code is : if lowQual1 > self.options.unqualified_base_limit or lowQual1 > self.options.unqualified_base_limit: I suppose the code should be : if lowQual1 > self.options.unqualified_base_limit or lowQual2 > self.options.unqualified_base_limit: