We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a2b07b commit 096d930Copy full SHA for 096d930
src/skDER/runProdigalAndMakeProperGenbank.py
@@ -112,7 +112,9 @@ def prodigalAndReformat():
112
input_genomic_fasta_file = updated_genomic_fasta_file
113
assert(util.is_fasta(input_genomic_fasta_file))
114
except:
115
- raise RuntimeError('Input genomic assembly does not appear to be in FASTA format.')
+ msg = 'Issue with uncompression of input genome.'
116
+ sys.stderr.write(msg + '\n')
117
+ sys.exit(1)
118
119
# Step 1: Run Prodigal (if needed)
120
og_prod_pred_prot_file = outdir + sample_name + '.original_predicted_proteome'
0 commit comments