Skip to content

Commit

Permalink
Fixed an error with variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-Hades committed Apr 16, 2024
1 parent 9565c22 commit 9a73d3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/refinegems/cmd_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def gaps():

# Find gaps via genes
# -------------------
@gapfill.command()
@gaps.command()
@click.argument('model', type=str)
def find(model,gff_file,organismid,gapfill_params,filename):
"""Find gaps in a model based on the genes/gene products of the underlying organism
Expand All @@ -122,7 +122,7 @@ def find(model,gff_file,organismid,gapfill_params,filename):

# Fill gaps via file
# ------------------
@gapfill.command()
@gaps.command()
@click.argument('model', type=str)
def fill(model,gap_analysis_result):
"""Fill gaps in a model based on a user-provided input file
Expand All @@ -131,7 +131,7 @@ def fill(model,gap_analysis_result):

# Find and fill gaps via genes
# ----------------------------
@gapfill.command()
@gaps.command()
@click.argument('model', type=str)
def complete(model,gapfill_params,filename):
"""Find and fill gaps based on the genes/gene products automatically
Expand Down

0 comments on commit 9a73d3b

Please sign in to comment.