]> git.donarmstrong.com Git - rsem.git/blobdiff - bam2wig.cpp
rsem v1.1.21
[rsem.git] / bam2wig.cpp
index 24a53c60d48b478fc06677f61846af9c8c92f64a..d205e8f7f4e9fde1cacef0ace99b626b18cc01d4 100644 (file)
@@ -6,12 +6,20 @@
 
 using namespace std;
 
+void printUsage() {
+  printf("Usage: rsem-bam2wig sorted_bam_input wig_output wiggle_name [--no-fractional-weight]\n");
+  printf("sorted_bam_input\t: Input BAM format file, must be sorted\n");
+  printf("wig_output\t\t: Output wiggle file's name, e.g. output.wig\n");
+  printf("wiggle_name\t\t: the name of this wiggle plot\n");
+  printf("--no-fractional-weight\t: If this is set, RSEM will not look for \"ZW\" tag and each alignment appeared in the BAM file has weight 1. Set this if your BAM file is not generated by RSEM. Please note that this option must be at the end of the command line.\n");
+  exit(-1);
+}
+
 int main(int argc, char* argv[]) {
-       if (argc != 4) {
-               printf("Usage: rsem-bam2wig sorted_bam_input wig_output wiggle_name\n");
-               exit(-1);
-       }
+       if (argc < 4 || argc > 5) { printf("Number of arguments is not correct!\n"); printUsage(); }
+       if (argc == 5 && strcmp(argv[4], "--no-fractional-weight")) { printf("Cannot recognize option %s!\n", argv[4]); printUsage(); }
 
+       no_fractional_weight = (argc == 5 && !strcmp(argv[4], "--no-fractional-weight"));
        UCSCWiggleTrackWriter track_writer(argv[2], argv[3]);
        build_wiggles(argv[1], track_writer);