X-Git-Url: https://git.donarmstrong.com/?p=rsem.git;a=blobdiff_plain;f=bam2wig.cpp;h=d205e8f7f4e9fde1cacef0ace99b626b18cc01d4;hp=24a53c60d48b478fc06677f61846af9c8c92f64a;hb=1b2999c4407ef8419fb89b66b843b7141caff4da;hpb=6eec553ba4ab1cb1c6f48cd14d9e5c92c7d85798 diff --git a/bam2wig.cpp b/bam2wig.cpp index 24a53c6..d205e8f 100644 --- a/bam2wig.cpp +++ b/bam2wig.cpp @@ -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);