Skip to content

Find_uniq_kmers problem #13

@vilperte

Description

@vilperte

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]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions