Skip to content

Commit

Permalink
correct second fasta_format to gtf2db
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeWLloyd committed Jun 9, 2023
1 parent 954c65e commit 4a6a91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/g2gtools/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ def fasta_format(
#
# #############################################################################
@app.command(help='Convert a GTF file to a G2G DB file')
def fasta_format(
def gtf2db(
input_file: Annotated[Path, typer.Option('-i', '--input', exists=True, dir_okay=False, resolve_path=True, help='GTF file')],
output_file: Annotated[Path, typer.Option('-o', '--output', exists=False, dir_okay=False, writable=True, resolve_path=True, help='Name of output file')] = None,
verbose: Annotated[int, typer.Option('-v', '--verbose', count=True, help='specify multiple times for more verbose output')] = 0,
Expand Down

0 comments on commit 4a6a91d

Please sign in to comment.