-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fpa_lr" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Pierre Marijon <[email protected]>"] | ||
|
||
description = "fpa filter long read mapping information to save disk space" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,32 +34,32 @@ use clap::{App, Arg, ArgMatches}; | |
|
||
pub fn parser<'a>() -> ArgMatches<'a> { | ||
App::new("fpa") | ||
.version("0.2 Beedrill") | ||
.version("0.3 Meowth") | ||
.author("Pierre Marijon <[email protected]>") | ||
.about("fpa take long read mapping information and filter them") | ||
.arg(Arg::with_name("delete_containment") | ||
.short("c") | ||
.display_order(10) | ||
.long("delete-containment") | ||
.help("If match are containment match is discard") | ||
.help("If match are containment match is discard, in gfa1 mode containment is not included") | ||
) | ||
.arg(Arg::with_name("keep_containment") | ||
.short("C") | ||
.display_order(20) | ||
.long("keep-containment") | ||
.help("Only containment match is keeped") | ||
.help("Only containment match is keeped, in gfa1 mode containment is included") | ||
) | ||
.arg(Arg::with_name("delete_internalmatch") | ||
.short("i") | ||
.display_order(30) | ||
.long("delete-internalmatch") | ||
.help("If match are an internal match is discard") | ||
.help("If match are an internal match is discard, in gfa1 mode internalmatch is not included") | ||
) | ||
.arg(Arg::with_name("keep_internalmatch") | ||
.short("I") | ||
.display_order(40) | ||
.long("keep-internalmatch") | ||
.help("Only internal match overlap is keeped") | ||
.help("Only internal match overlap is keeped, in gfa1 mode internalmatch is included") | ||
) | ||
.arg(Arg::with_name("delete_dovetail") | ||
.short("d") | ||
|
@@ -144,7 +144,7 @@ pub fn parser<'a>() -> ArgMatches<'a> { | |
.possible_values(&["paf", "mhap"]) | ||
) | ||
.arg(Arg::with_name("mode") | ||
.short("g") | ||
.short("o") | ||
.long("output-mode") | ||
.display_order(120) | ||
.takes_value(true) | ||
|