cerr<<"\t"<<"-u\t\t\t"<<"Write ORIGINAL a.bed entry ONCE if ANY overlap bed."<<endl<<"\t\t\t\tIn other words, ignore multiple overlaps."<<endl<<endl;
cerr<<"\t"<<"-v \t\t\t"<<"Only report those entries in A that have NO OVERLAP in B."<<endl<<"\t\t\t\tSimilar to grep -v."<<endl<<endl;
cerr<<"\t"<<"-s (100000)\t\t"<<"Slop added before and after each entry in A"<<endl<<"\t\t\t\tUseful for finding overlaps within N bases upstream and downstream."<<endl<<endl;
cerr<<"\t"<<"-f (e.g. 0.05)\t\t"<<"Minimum overlap req'd as fraction of a.bed."<<endl<<"\t\t\t\tDefault is 1E-9 (effectively 1bp)."<<endl<<endl;
cerr<<"\t"<<"-c \t\t\t"<<"For each entry in A, report the number of hits in B while restricting to -f."<<endl<<"\t\t\t\tReports 0 for A entries that have no overlap with B."<<endl<<endl;
cerr<<"\t"<<"-wb \t\t\t"<<"Write the entry in B for each overlap."<<endl<<"\t\t\t\tUseful for knowing _what_ A overlaps. Restricted by -f."<<endl<<endl;
cerr<<"\t"<<"-wa \t\t\t"<<"Write the original entry in A for each overlap."<<endl<<endl;
cerr<<"\t"<<"-wb \t\t\t"<<"Write the original entry in B for each overlap."<<endl<<"\t\t\t\tUseful for knowing _what_ A overlaps. Restricted by -f."<<endl<<endl;
cerr<<"NOTES: "<<endl;
cerr<<"\t"<<"-i stdin\t\t"<<"Allows intersectBed to read BED from stdin. E.g.: cat a.bed | intersectBed -a stdin -b B.bed"<<endl<<endl;