Skip to content

Commit

Permalink
new indexing algo/fmt; NOT working yet
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Jun 22, 2012
1 parent 9ea927a commit 38296d0
Show file tree
Hide file tree
Showing 11 changed files with 249 additions and 259 deletions.
2 changes: 1 addition & 1 deletion bamidx.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ int main_bamidx(int argc, char *argv[])
writes a new index with extension '.csi'.\n\n");
return 1;
}
bam_index_build(argv[optind], 0, min_shift);
bam_index_build(argv[optind], min_shift);
return 0;
}
2 changes: 1 addition & 1 deletion bcfidx.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ int main_bcfidx(int argc, char *argv[])
fprintf(stderr, "Usage: bamidx [-s minShift] <in.bam>\n");
return 1;
}
bcf_index_build(argv[optind], 0, min_shift);
bcf_index_build(argv[optind], min_shift);
return 0;
}
Loading

0 comments on commit 38296d0

Please sign in to comment.