cerr<<"Description: Examines a \"window\" around each feature in A.bed and"<<endl;
cerr<<"reports all features in B.bed that are within the window. For each"<<endl;
cerr<<"Description: Examines a \"window\" around each feature in A and"<<endl;
cerr<<"reports all features in B that overlap the window. For each"<<endl;
cerr<<"overlap the entire entry in A and B are reported."<<endl<<endl;
cerr<<"Usage: "<<PROGRAM_NAME<<" [OPTIONS] -a <a.bed> -b <b.bed>"<<endl<<endl;
cerr<<"OPTIONS: "<<endl;
cerr<<"\t"<<"-w (def. 1000)\t\t"<<"Base pairs added upstream and downstream of each entry in A when searching for overlaps in B."<<endl<<endl;
cerr<<"\t"<<"-l (def. 1000)\t\t"<<"Base pairs added upstream (left of) of each entry in A when searching for overlaps in B."<<endl<<endl;
cerr<<"\t"<<"-r (def. 1000)\t\t"<<"Base pairs added downstream (right of) of each entry in A when searching for overlaps in B."<<endl<<endl;
cerr<<"\t"<<"-sw\t\t\t"<<"Define -l and -r based on strand. E.g. if used, -l 500 for a negative-stranded "<<endl<<"\t\t\t\tfeature will add 500 bp downstream. Default = false."<<endl<<endl;
cerr<<"\t"<<"-sm\t\t\t"<<"Only report hits in B that overlap A on the same strand."<<endl<<"\t\t\t\tBy default, overlaps are reported without respect to strand."<<endl<<endl;
cerr<<"\t"<<"-u\t\t\t"<<"Write ORIGINAL a.bed entry ONCE if ANY overlap with B.bed."<<endl<<"\t\t\t\tIn other words, just report the fact >=1 hit was found."<<endl<<endl;
cerr<<"\t"<<"-v \t\t\t"<<"Only report those entries in A that have NO OVERLAP in B within the requested window."<<endl<<"\t\t\t\tSimilar to grep -v."<<endl<<endl;
cerr<<"\t"<<"-c \t\t\t"<<"For each entry in A, report the number of hits in B within the requested window."<<endl<<"\t\t\t\tReports 0 for A entries that have no overlap with B."<<endl<<endl;
cerr<<"NOTES: "<<endl;
cerr<<"\t"<<"-i stdin\t\t"<<"Allows BED file A to be read from stdin. E.g.: cat a.bed | windowBed -a stdin -b B.bed"<<endl<<endl;