Skip to content

Commit

Permalink
version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
natir committed Oct 9, 2018
1 parent 456328d commit 43347f3
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

20 changes: 17 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
[package]
name = "fpa"
version = "0.1.0"
authors = ["Marijon Pierre <[email protected]>"]
name = "fpa_lr"
version = "0.1.1"
authors = ["Pierre Marijon <[email protected]>"]

description = "fpa filter long read mapping information to save disk space"

homepage = "https://github.com/natir/fpa"
repository = "https://github.com/natir/fpa"
readme = "Readme.md"
license = "MIT"
keywords = ["bioinformatics", "long-read"]

[badges]
travis-ci = { repository = "natir/yacrd", branch = "master" }

[dependencies]
csv = "1"
Expand All @@ -15,3 +26,6 @@ lazy_static = "1"
serde_derive = "1.0"
enum_primitive = "0.1.1"

[[bin]]
name = "fpa"
path = "src/main.rs"
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 Pierre Marijon

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This soft can be replace by a simple awk, bash, python, ~perl~, {your favorite l
If you have a rust environment setup you can run :

```
cargo install fpa
cargo install fpa_lr
```

### With conda
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ use filter::Filter;
fn main() {

let matches = App::new("fpa")
.version("0.1 Mewto")
.version("0.1 Gengar")
.author("Pierre Marijon <[email protected]>")
.about("fpa take in stdin long read mapping information and write in stdout the valid")
.about("fpa take long read mapping information and filter them")
.arg(Arg::with_name("delete_containment")
.short("c")
.display_order(10)
Expand Down

0 comments on commit 43347f3

Please sign in to comment.