| 9 | #include "KeyListOps.h" |
| 10 | |
| 11 | void map_help(void) { |
| 12 | |
| 13 | cerr << "\nTool: bedtools map (aka mapBed)" << endl; |
| 14 | cerr << "Version: " << VERSION << "\n"; |
| 15 | cerr << "Summary: Apply a function to a column from B intervals that overlap A." << endl << endl; |
| 16 | |
| 17 | cerr << "Usage: " << "bedtools map" << " [OPTIONS] -a <bed/gff/vcf> -b <bed/gff/vcf>" << endl << endl; |
| 18 | |
| 19 | cerr << "Options: " << endl; |
| 20 | |
| 21 | |
| 22 | KeyListOpsHelp(); |
| 23 | |
| 24 | IntersectCommonHelp(); |
| 25 | allToolsCommonHelp(); |
| 26 | |
| 27 | cerr << "Notes: " << endl; |
| 28 | cerr << "\t(1) Both input files must be sorted by chrom, then start." << endl << endl; |
| 29 | } |
| 30 | |
| 31 | |
| 32 |
no test coverage detected