Skip to content

Commit

Permalink
Merge pull request #74 from Kalan-Lab/raufs-patch-1
Browse files Browse the repository at this point in the history
Update annotateProtSeqs.py
  • Loading branch information
raufs authored Jul 9, 2024
2 parents aad527e + 237fa21 commit d02e44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/annotateProtSeqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def create_parser():

parser.add_argument('-i', '--protein_faa', help='Path to FASTA of protein sequences.', required=True)
parser.add_argument('-o', '--output_dir', help='Path to output directory where subset of selected gene cluster GenBanks will be written.', required=True)
parser.add_argument('-c', '--cpus', help='The number of CPUs to use [Default is 1].', required=False, default=1)
parser.add_argument('-c', '--cpus', type=int, help='The number of CPUs to use [Default is 1].', required=False, default=1)
args = parser.parse_args()

return args
Expand Down

0 comments on commit d02e44a

Please sign in to comment.