Fix small bug in ContaminationBySisters_v2.1.py

This commit is contained in:
rebeccagawron 2023-07-05 13:29:32 -04:00 committed by GitHub
parent 5a3ee58177
commit 480cf3b9d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ def write_all_data(args):
consider = True
else:
for clade in args.query_clades:
if leaf.startswith(clade):
if leaf.name.startswith(clade):
consider = True
break
@ -277,4 +277,4 @@ main()