Skip to content

Commit

Permalink
Bump rustbio version. Closes #8.
Browse files Browse the repository at this point in the history
bed3 parsing was broken in older versions of rustbio. Now resolved with
latest version.
  • Loading branch information
snystrom committed May 9, 2022
1 parent 5eed87a commit 658d104
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 66 deletions.
92 changes: 33 additions & 59 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "vplot"
version = "0.3.422"
version = "0.3.423"
authors = ["Spencer Nystrom <[email protected]>"]
edition = "2018"

[dependencies]
csv = "1.1.3"
bio = "0.32.0"
bio = "0.40.0"
rust-htslib = {version = "0.32", default-features = false}
structopt = "*"
ndarray = "0.13.1"
Expand Down
9 changes: 4 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ 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, 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.
/// Path to a bed file 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.
#[structopt(parse(from_os_str))]
regions: std::path::PathBuf,
/// Maximum fragment size to include in the V-plot matrix
Expand Down

0 comments on commit 658d104

Please sign in to comment.