Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Help page fixes #21

Merged
merged 2 commits into from
Jan 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions progs/scram_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ static char *detect_format(char *fn) {
}

static void usage(FILE *fp) {
fprintf(fp, " -=- scram_flagstat -=- version %s\n", PACKAGE_VERSION);
fprintf(fp, " -=- scram_test -=- version %s\n", PACKAGE_VERSION);
fprintf(fp, "Author: James Bonfield, Wellcome Trust Sanger Institute. 2013\n\n");

fprintf(fp, "Usage: scram_flagstat [options] [input_file]\n");
fprintf(fp, "Usage: scram_test [options] [input_file]\n");

fprintf(fp, "Options:\n");
fprintf(fp, " -I format Set input format: \"bam\", \"sam\" or \"cram\".\n");
Expand Down
2 changes: 1 addition & 1 deletion progs/srf_extract_hash.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ void ztr2fastq(ztr_t *z, char *name, int calibrated) {

/* ------------------------------------------------------------------------ */
void usage(void) {
fprintf(stderr, "Usage: srf_extract [-fastq] [-c] archive_name trace_name ...\n");
fprintf(stderr, "Usage: srf_extract_hash [-fastq] [-c] archive_name trace_name ...\n");
exit(1);
}

Expand Down