Update Cluster.py

This commit is contained in:
Godwin N. Ani 2025-03-21 13:43:08 -04:00 committed by GitHub
parent 3d8cd2e221
commit a2ec0edb37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ def main():
if args.type == 'aa':
identity = input_validation(args.identity, 'ERROR! Use format 0.## for Amino acids sequence identity threshold.')
overlap = input_validation(args.overlap, 'ERROR! Use format 0.## for Amino acids sequence alignment overlap value.')
cluster_sequences('cd-hit', identity, overlap, args.input, args.output)
cluster_sequences('cd-hit', identity, overlap, args.input_files, args.output)
elif args.type == 'dna':
identity = input_validation(args.identity, 'ERROR! Use format 0.## for DNA sequence identity threshold.')
overlap = input_validation(args.overlap, 'ERROR! Use format 0.## for DNA sequence alignment overlap value.')