Skip to content

Commit

Permalink
Revert kmc -cs65535 as not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
tseemann committed Sep 7, 2017
1 parent b62b378 commit a24486c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/shovill
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ unless ($gsize) {
msg("Estimating genome size with 'kmc'");
# FIXME: want to choose a dynamic kmer cutoff for high cov samples
my $minkc = 3; # max(3, int($depth/100));
run_cmd("kmc -m$ram_int -sm -cs65535 -n256 -ci$minkc -k25 -t$cpus \Q$R1\E kmc $tmpdir", "20-kmc.log");
run_cmd("kmc -m$ram_int -sm -n256 -ci$minkc -k25 -t$cpus \Q$R1\E kmc $tmpdir", "20-kmc.log");
my($ucount) = grep { m/unique\s+counted/ } read_file('20-kmc.log');
$ucount =~ m/(\d+)$/ or err("Could not determine unique counted k-mers using kmc");
$gsize = $1;
Expand Down

0 comments on commit a24486c

Please sign in to comment.