Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
R3
legacy
bedtools2
Commits
74b0da44
Commit
74b0da44
authored
Jul 06, 2010
by
Aaron
Browse files
Improved the usage statement for groupBy and bedToIgv.
parent
e0cef21a
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/bedToIgv/bedToIgv.cpp
View file @
74b0da44
...
...
@@ -157,7 +157,7 @@ void ShowHelp(void) {
cerr
<<
"Summary: Creates a batch script to create IGV images "
<<
endl
;
cerr
<<
" at each interval defined in a BED/GFF/VCF file."
<<
endl
<<
endl
;
cerr
<<
"Usage: "
<<
PROGRAM_NAME
<<
" [OPTIONS] -i <bed/gff/vcf>
-g <genome>
"
<<
endl
<<
endl
;
cerr
<<
"Usage: "
<<
PROGRAM_NAME
<<
" [OPTIONS] -i <bed/gff/vcf>"
<<
endl
<<
endl
;
cerr
<<
"Options: "
<<
endl
;
...
...
src/groupBy/groupBy.cpp
View file @
74b0da44
...
...
@@ -144,7 +144,7 @@ void ShowHelp(void) {
cerr
<<
"Summary: Summarizes a dataset column based upon"
<<
endl
;
cerr
<<
"
\t
common column groupings. Akin to the SQL
\"
group by
\"
command."
<<
endl
<<
endl
;
cerr
<<
"Usage: "
<<
PROGRAM_NAME
<<
" [OPTIONS] -i <input> -opCol <> "
<<
endl
<<
endl
;
cerr
<<
"Usage: "
<<
PROGRAM_NAME
<<
" [OPTIONS] -i <input> -opCol <
column
> "
<<
endl
<<
endl
;
cerr
<<
"Options: "
<<
endl
;
cerr
<<
"
\t
-i
\t
"
<<
"Input file. Use
\"
stdin
\"
for pipes."
<<
endl
<<
endl
;
...
...
@@ -171,6 +171,8 @@ void ShowHelp(void) {
cerr
<<
"
\t
chr1 10 20 A 1000"
<<
endl
<<
endl
;
cerr
<<
"
\t
$ cat test.out | groupBy -i stdin -grp 1,2,3,4 -opCol 8 -op mean"
<<
endl
;
cerr
<<
"
\t
chr1 10 20 A 5500"
<<
endl
<<
endl
;
cerr
<<
"
\t
$ cat test.out | groupBy -i stdin -grp 1,2,3,4 -opCol 8 -op collapse"
<<
endl
;
cerr
<<
"
\t
chr1 10 20 A 1000,10000,"
<<
endl
<<
endl
;
cerr
<<
"Notes: "
<<
endl
;
cerr
<<
"
\t
(1) The input file/stream should be sorted/grouped by the -grp. columns"
<<
endl
<<
endl
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment