Skip to content

Commit 4013206

Browse files
committed
Increase length threshold for Prodigal command in PLAST class
1 parent f08cf38 commit 4013206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plast/plast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ def load_nt_fasta(self, input_fasta: Union[str, any]) -> "PLAST":
388388
f" -a {output_file.name}"
389389
f" -g 11 -q"
390390
)
391-
if self.length < 100000:
391+
if self.length < 200000:
392392
cmd += " -p meta"
393393
self.debug(f"Running Prodigal: {cmd}")
394394
try:

0 commit comments

Comments
 (0)