Crates.io | kmerorigin |
lib.rs | kmerorigin |
version | 0.1.0 |
source | src |
created_at | 2024-11-10 18:09:59.735076 |
updated_at | 2024-11-10 18:09:59.735076 |
description | crate for estimation of the origin of the kmers |
homepage | https://github.com/codecreatede/rust-genome-longread-count |
repository | https://github.com/codecreatede/rust-genome-longread-count |
max_upload_size | |
id | 1443117 |
size | 26,778,802 |
Usage: kmerorigin <KMER_ARG> <FASTAFILE_ARG>
Arguments:
<KMER_ARG> please provide the kmer to be searched for the origin
<FASTAFILE_ARG> please provide the path to be searched for the strings containing the kmer
Options:
-h, --help Print help
-V, --version Print version
./target/debug/kmerorigin 4 ./sample-files/fastafile.fasta
>seq1
AGTCAGTC AGTC 0 4
AGTCAGTC GTCA 1 5
AGTCAGTC CAGT 3 7
AGTCAGTC TCAG 2 6
>seq2
AGGCAGTC CAGT 3 7
AGGCAGTC GGCA 1 5
AGGCAGTC AGGC 0 4
AGGCAGTC GCAG 2 6
Gaurav Sablok