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
76cc34c7
Commit
76cc34c7
authored
14 years ago
by
Aaron
Browse files
Options
Downloads
Patches
Plain Diff
Updated flankBed help
parent
95f488dc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/flankBed/flankBedMain.cpp
+6
-6
6 additions, 6 deletions
src/flankBed/flankBedMain.cpp
with
6 additions
and
6 deletions
src/flankBed/flankBedMain.cpp
+
6
−
6
View file @
76cc34c7
...
...
@@ -142,23 +142,23 @@ void ShowHelp(void) {
cerr
<<
"Author: Aaron Quinlan (aaronquinlan@gmail.com)"
<<
endl
;
cerr
<<
"Summary:
Add requested base pairs of
\"
slop
\"
to each
feature."
<<
endl
<<
endl
;
cerr
<<
"Summary:
Creates flanking interval(s) for each BED/GFF/VCF
feature."
<<
endl
<<
endl
;
cerr
<<
"Usage: "
<<
PROGRAM_NAME
<<
" [OPTIONS] -i <bed/gff/vcf> -g <genome> [-b <int> or (-l and -r)]"
<<
endl
<<
endl
;
cerr
<<
"Options: "
<<
endl
;
cerr
<<
"
\t
-b
\t
"
<<
"
Increase the BED/GFF/VCF entry by
-b base pairs in each direction."
<<
endl
;
cerr
<<
"
\t
-b
\t
"
<<
"
Create flanking intervak using
-b base pairs in each direction."
<<
endl
;
cerr
<<
"
\t\t
- (Integer) or (Float, e.g. 0.1) if used with -pct."
<<
endl
<<
endl
;
cerr
<<
"
\t
-l
\t
"
<<
"The number of base pairs t
o subtrac
t from
the
start coordinate."
<<
endl
;
cerr
<<
"
\t
-l
\t
"
<<
"The number of base pairs t
hat a flank should star
t from
orig.
start coordinate."
<<
endl
;
cerr
<<
"
\t\t
- (Integer) or (Float, e.g. 0.1) if used with -pct."
<<
endl
<<
endl
;
cerr
<<
"
\t
-r
\t
"
<<
"The number of base pairs t
o add to the
end coordinate."
<<
endl
;
cerr
<<
"
\t
-r
\t
"
<<
"The number of base pairs t
hat a flank should end from orig.
end coordinate."
<<
endl
;
cerr
<<
"
\t\t
- (Integer) or (Float, e.g. 0.1) if used with -pct."
<<
endl
<<
endl
;
cerr
<<
"
\t
-s
\t
"
<<
"Define -l and -r based on strand."
<<
endl
;
cerr
<<
"
\t\t
E.g. if used, -l 500 for a negative-stranded feature, "
<<
endl
;
cerr
<<
"
\t\t
it will
add
500 bp downstream. Default = false."
<<
endl
<<
endl
;
cerr
<<
"
\t\t
it will
start the flank
500 bp downstream. Default = false."
<<
endl
<<
endl
;
cerr
<<
"
\t
-pct
\t
"
<<
"Define -l and -r as a fraction of the feature's length."
<<
endl
;
cerr
<<
"
\t\t
E.g. if used on a 1000bp feature, -l 0.50, "
<<
endl
;
...
...
@@ -166,7 +166,7 @@ void ShowHelp(void) {
cerr
<<
"Notes: "
<<
endl
;
cerr
<<
"
\t
(1) Starts will be set to 0 if options would force it below 0."
<<
endl
;
cerr
<<
"
\t
(2) Ends will be set to the chromosome length if
requested
slop
would"
<<
endl
;
cerr
<<
"
\t
(2) Ends will be set to the chromosome length if requested
flank
would"
<<
endl
;
cerr
<<
"
\t
force it above the max chrom length."
<<
endl
;
cerr
<<
"
\t
(3) The genome file should tab delimited and structured as follows:"
<<
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