Skip to content

Commit bcd9106

Browse files
committed
Change hint on bed format to indicate correct bed4.
1 parent b93352d commit bcd9106

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vplot"
3-
version = "0.3.421"
3+
version = "0.3.422"
44
authors = ["Spencer Nystrom <nystromdev@gmail.com>"]
55
edition = "2018"
66

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Like examples? Here you go:
7474
``` sh
7575

7676
# regions must be equal width
77+
# and must be in bed4 format
7778
$ cat regions.bed
7879
chr2L 100 200 .
7980
chr3R 5000 5100 .
@@ -198,7 +199,7 @@ ARGS:
198199
Path to an indexed bam file
199200

200201
<regions>
201-
Path to a bed file (must be in bed4 format: chr, start, end, strand) Of a region (or regions) in which to
202+
Path to a bed file (must be in bed4 format: chr, start, end, name) Of a region (or regions) in which to
202203
generate the vplot. If using multiple regions, all entries must be the same width. If setting multiple
203204
regions, reads will be aggregated into a single matrix unless `--multi` is set
204205
```

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct Cli {
1414
/// Path to an indexed bam file
1515
#[structopt(parse(from_os_str))]
1616
bam: std::path::PathBuf,
17-
/// Path to a bed file (must be in bed4 format: chr, start, end, strand) Of
17+
/// Path to a bed file (must be in bed4 format: chr, start, end, name) Of
1818
/// a region (or regions) in which to generate the vplot. If using multiple
1919
/// regions, all entries must be the same width. If setting multiple
2020
/// regions, reads will be aggregated into a single matrix unless `--multi`

0 commit comments

Comments
 (0)