-
Notifications
You must be signed in to change notification settings - Fork 7
Find_uniq_kmers problem #13
Copy link
Copy link
Closed
Description
Hi,
I noticed that the script find_uniq_kmers might have a problem when when dumping the uniq kmers to a txt file.
It uses the min_count and max_count from the analyze_histogram steps. However, the max and min parameters should be passed in the beginning of the code and not by the end.
Instead of
dump_cmd = [kmc_cmd + '_dump', kmc_db, out_path,
'-ci' + str(min_count), '-cx' + str(max_count)]
It should be
dump_cmd = [kmc_cmd + '_dump', '-ci' + str(min_count), '-cx' + str(max_count),
kmc_db, out_path]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels