Skip to content

Commit

Permalink
Change hint on bed format to indicate correct bed4.
Browse files Browse the repository at this point in the history
  • Loading branch information
snystrom committed Oct 23, 2021
1 parent b93352d commit bcd9106
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vplot"
version = "0.3.421"
version = "0.3.422"
authors = ["Spencer Nystrom <nystromdev@gmail.com>"]
edition = "2018"

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Like examples? Here you go:
``` sh

# regions must be equal width
# and must be in bed4 format
$ cat regions.bed
chr2L 100 200 .
chr3R 5000 5100 .
Expand Down Expand Up @@ -198,7 +199,7 @@ ARGS:
Path to an indexed bam file

<regions>
Path to a bed file (must be in bed4 format: chr, start, end, strand) Of a region (or regions) in which to
Path to a bed file (must be in bed4 format: chr, start, end, name) Of a region (or regions) in which to
generate the vplot. If using multiple regions, all entries must be the same width. If setting multiple
regions, reads will be aggregated into a single matrix unless `--multi` is set
```
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct Cli {
/// Path to an indexed bam file
#[structopt(parse(from_os_str))]
bam: std::path::PathBuf,
/// Path to a bed file (must be in bed4 format: chr, start, end, strand) Of
/// Path to a bed file (must be in bed4 format: chr, start, end, name) Of
/// a region (or regions) in which to generate the vplot. If using multiple
/// regions, all entries must be the same width. If setting multiple
/// regions, reads will be aggregated into a single matrix unless `--multi`
Expand Down

0 comments on commit bcd9106

Please sign in to comment.