Skip to content

Commit

Permalink
modified: src/bam_pick.c
Browse files Browse the repository at this point in the history
	modified:   src/usage.c
  • Loading branch information
shiquan committed Oct 17, 2024
1 parent cf5564a commit 95c7b64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions src/bam_pick.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ static int parse_args(int argc, char **argv)
const char **var = 0;
if (strcmp(a, "-list") == 0) var = &extract_fname;
else if (strcmp(a, "-o") == 0) var = &args.output_fname;
else if (strcmp(a, "-tags") == 0) var = &tag_str;
else if (strcmp(a, "-tag") == 0) error("Did you mean -tags ?");
else if (strcmp(a, "-tags") == 0 || strcmp(a, "-tag") == 0) var = &tag_str;
else if (strcmp(a, "-h") == 0 || strcmp(a, "--help") == 0) return 1;
else if (strcmp(a, "-@") == 0) var = &file_th;
else if (strcmp(a, "-q") == 0) var = &mapq;
Expand Down
1 change: 1 addition & 0 deletions src/usage.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ int anno_usage()
fprintf(stderr, " Also generate junction name (chr:exon1_end-exon2_start/[+-]/Gene) in JC tag.\n");
fprintf(stderr, " -flatten Split overlapped exons into nonoverlapped bins.\n");
fprintf(stderr, " -psi Annotate exclude reads tag (ER) for each exon.\n");
fprintf(stderr, " -vague-edge [INT] Junction reads not exactly spliced at splice site and gene ends are allowed. Used to annotate third generation reads.\n");
fprintf(stderr, "\n");
//fprintf(stderr, " -as Annotate antisense RNAs. **experiment**\n");
fprintf(stderr, " -tss Annotate reads start from TSS, designed for capped library. **experiment**\n");
Expand Down

0 comments on commit 95c7b64

Please sign in to comment.