Skip to content

Commit

Permalink
addressing @charles-cowart comments
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza committed Jun 2, 2023
1 parent 6f003a7 commit e159ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiita_pet/handlers/admin_processing_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def post(self):

# Remove blank samples from sample names
blank = [x for x in snames if x.lower().startswith('blank')]
snames = [x for x in snames if 'blank' not in x.lower()]
snames = set(snames) - set(blank)

# Validate user's sample names against qiita study
qsnames = set(qsnames)
Expand Down

0 comments on commit e159ee4

Please sign in to comment.