Skip to content

Commit

Permalink
Update paprica-make_ref.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bowmanjeffs committed Mar 23, 2022
1 parent f2e085c commit 9646e4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paprica-make_ref.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
try:
domain = command_args['domain']
except KeyError:
domain = 'archaea'
domain = 'bacteria'
try:
cpus = str(command_args['cpus'])
except KeyError:
Expand Down Expand Up @@ -551,9 +551,9 @@ def get_eukaryotes():

if download == 'T':
if domain == 'bacteria':
summary_complete = summary_complete.drop(bad_bacteria)
summary_complete = summary_complete.drop(bad_bacteria, errors = 'ignore')
elif domain == 'archaea':
summary_complete = summary_complete.drop(bad_archaea)
summary_complete = summary_complete.drop(bad_archaea, errors = 'ignore')

## Determine which genomes are new. This doesn't control which genomes are downloaded, but
## it does control which compositional vectors need to be created, and which genomes need
Expand Down

0 comments on commit 9646e4d

Please sign in to comment.