Skip to content

Commit

Permalink
Merge pull request #88 from COMBINE-lab/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
rob-p authored Oct 11, 2022
2 parents 2ebfaa9 + aa0f4ab commit 78f6411
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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 = "alevin-fry"
version = "0.7.0"
version = "0.7.1"
authors = [
"Avi Srivastava <[email protected]>",
"Hirak Sarkar <[email protected]>",
Expand Down
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,10 @@ fn main() -> anyhow::Result<()> {
-k --"knee-distance" "attempt to determine the number of barcodes to keep using the knee distance method."
)
)
.arg(arg!(-e --"expect-cells" <EXPECTCELLS> "defines the expected number of cells to use in determining the (read, not UMI) based cutoff"))
.arg(arg!(-f --"force-cells" <FORCECELLS> "select the top-k most-frequent barcodes, based on read count, as valid (true)"))
.arg(arg!(-e --"expect-cells" <EXPECTCELLS> "defines the expected number of cells to use in determining the (read, not UMI) based cutoff")
.value_parser(value_parser!(usize)))
.arg(arg!(-f --"force-cells" <FORCECELLS> "select the top-k most-frequent barcodes, based on read count, as valid (true)")
.value_parser(value_parser!(usize)))
.arg(
arg!(-b --"valid-bc" <VALIDBC> "uses true barcode collected from a provided file")
.value_parser(pathbuf_file_exists_validator)
Expand Down

0 comments on commit 78f6411

Please sign in to comment.