Skip to content

Commit 658d104

Browse files
committed
Bump rustbio version. Closes #8.
bed3 parsing was broken in older versions of rustbio. Now resolved with latest version.
1 parent 5eed87a commit 658d104

File tree

3 files changed

+39
-66
lines changed

3 files changed

+39
-66
lines changed

Cargo.lock

Lines changed: 33 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

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

77
[dependencies]
88
csv = "1.1.3"
9-
bio = "0.32.0"
9+
bio = "0.40.0"
1010
rust-htslib = {version = "0.32", default-features = false}
1111
structopt = "*"
1212
ndarray = "0.13.1"

src/main.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ 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, name) Of
18-
/// a region (or regions) in which to generate the vplot. If using multiple
19-
/// regions, all entries must be the same width. If setting multiple
20-
/// regions, reads will be aggregated into a single matrix unless `--multi`
21-
/// is set.
17+
/// Path to a bed file of a region (or regions) in which to generate the
18+
/// vplot. If using multiple regions, all entries must be the same width. If
19+
/// setting multiple regions, reads will be aggregated into a single matrix
20+
/// unless `--multi` is set.
2221
#[structopt(parse(from_os_str))]
2322
regions: std::path::PathBuf,
2423
/// Maximum fragment size to include in the V-plot matrix

0 commit comments

Comments
 (0)