-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finished writing the code today and a complete graph to bed analyzer and final and binary release.
- Loading branch information
1 parent
669fc03
commit 0af041a
Showing
10 changed files
with
433 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[package] | ||
name = "rust-pangenome-graph-bed" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
clap = { version = "4.5.26", features = ["derive"] } |
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,2 +1,38 @@ | ||
# rust-pangenome-graph-bed | ||
rust pangenome graph bed | ||
|
||
- rust pangenome graph bed converted | ||
- Incase of Golang and RUST, please see the last commit message and if it says compiled binary then it is completed or else still in development version. | ||
|
||
|
||
``` | ||
cargo build | ||
``` | ||
|
||
``` | ||
╭─gauravsablok@fedora ~/Desktop/rust-pangenome-graph-linear ‹main*› | ||
╰─➤ ./target/debug/rust-pangenome-graph-bed -h | ||
Usage: rust-pangenome-graph-bed <GRAPH> | ||
Arguments: | ||
<GRAPH> please provide the path to the graph file | ||
Options: | ||
-h, --help Print help | ||
-V, --version Print version | ||
``` | ||
|
||
``` | ||
./target/debug/rust-pangenome-graph-bed ./sample-file/sample-pangenome.gfa | ||
"MT_human" 0 4001 "MTh0" 0 | ||
"MT_human" 4001 4502 "MTh4001" 0 | ||
"MT_orang" 3426 3927 "MTo3426" 1 | ||
"MT_human" 4502 9505 "MTh4502" 0 | ||
"MT_orang" 8961 9463 "MTo8961" 1 | ||
"MT_human" 9505 13014 "MTh9505" 0 | ||
"MT_human" 13014 13516 "MTh13014" 0 | ||
"MT_human" 13516 16569 "MTh13516" 0 | ||
``` | ||
|
||
Gaurav Sablok |
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
MT_human 0 4001 MTh0 0 | ||
MT_human 4001 4502 MTh4001 0 | ||
MT_orang 3426 3927 MTo3426 1 | ||
MT_human 4502 9505 MTh4502 0 | ||
MT_orang 8961 9463 MTo8961 1 | ||
MT_human 9505 13014 MTh9505 0 | ||
MT_human 13014 13516 MTh13014 0 | ||
MT_human 13516 16569 MTh13516 0 |
Oops, something went wrong.