Skip to content

Commit 8e82292

Browse files
Merge pull request #238 from smithlabcode/kmersites-variable-step-wig-offset-fix
One-based variable-step bigWig in kmersites
2 parents 34b213f + 5224c5a commit 8e82292

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/kmersites.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ kmersites(const int argc, const char **argv) -> int {
110110
string kmer = "CG";
111111
string outfile;
112112
// int n_threads = 1;
113-
int offset = 0;
113+
int offset = 1;
114114

115115
/****************** COMMAND LINE OPTIONS ********************/
116116
OptionParser opt_parse(fs::path(string(*argv)).filename(),

0 commit comments

Comments
 (0)