Skip to content

Commit

Permalink
Fix on not using gcols
Browse files Browse the repository at this point in the history
When not specifying genomic columns, still tried to estimate most abundant taxa from genomic column. But tis fixed now!
  • Loading branch information
iquasere committed Feb 19, 2021
1 parent cb89179 commit 8bcfa07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kegg_charter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from kegg_pathway_map import KEGGPathwayMap

__version__ = "0.2.2"
__version__ = "0.2.3"


def get_arguments():
Expand Down Expand Up @@ -582,7 +582,7 @@ def main():
set_text_boxes_kgmls(metabolic_maps, args.resources_directory)

# Set colours for taxa if MG data is present
if hasattr(args, 'genomic_columns'):
if args.genomic_columns:
args.genomic_columns = args.genomic_columns.split(',')
if args.taxa_list is None:
taxa = most_abundant_taxa(data, args.genomic_columns, args.taxa_column,
Expand Down
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "keggcharter" %}
{% set version = "0.2.2" %}
{% set version = "0.2.3" %}
{% set sha256 = "905268158c74058228faca2b34d44eae8f84b23bfa5dee49285635cf59684d7f" %}

package:
Expand Down

0 comments on commit 8bcfa07

Please sign in to comment.