Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bedtools2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
R3
legacy
bedtools2
Commits
74b0da44
Commit
74b0da44
authored
14 years ago
by
Aaron
Browse files
Options
Downloads
Patches
Plain Diff
Improved the usage statement for groupBy and bedToIgv.
parent
e0cef21a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/bedToIgv/bedToIgv.cpp
+1
-1
1 addition, 1 deletion
src/bedToIgv/bedToIgv.cpp
src/groupBy/groupBy.cpp
+3
-1
3 additions, 1 deletion
src/groupBy/groupBy.cpp
with
4 additions
and
2 deletions
src/bedToIgv/bedToIgv.cpp
+
1
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
src/groupBy/groupBy.cpp
+
3
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment