We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5bbc5 commit c3665bbCopy full SHA for c3665bb
kb_python/ref.py
@@ -627,7 +627,7 @@ def ref(
627
628
if len(fasta_paths) > 1:
629
raise RefError((
630
- 'Option `--a` does not support multiple FASTA files as input'
+ 'Option `--aa` does not support multiple FASTA files as input'
631
'while no GTF file(s) provided'
632
))
633
else:
@@ -668,6 +668,8 @@ def ref(
668
if not glob.glob(f'{index_path}*') or overwrite:
669
t2g_result = create_t2g_from_fasta(cdna_path, t2g_path, aa_flag=aa)
670
results.update(t2g_result)
671
+ if index_path.upper() == "NONE":
672
+ return results
673
674
if k and k != 31:
675
logger.warning(
0 commit comments