greenelab / django-genes

A Django package to represent genes
BSD 3-Clause "New" or "Revised" License
2 stars 3 forks source link

Replace BaseCommand.option_list with add_arguments() method #18

Closed dongbohu closed 5 years ago

dongbohu commented 5 years ago

This PR addresses issue #16.

Based on the discussion in issue #17, the --taxonomy_id flag in genes_load_wb.py is also removed because it is not being used.

dongbohu commented 5 years ago

@dhimmel: This may seem like a big PR, but what the revisions do are pretty boring. It simply replaces make_options with add_arguments() method (similar to the PR you reviewed yesterday).