Skip to content

Commit

Permalink
doc: Run instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
atamakahere-git committed Nov 22, 2023
1 parent 6a3584b commit edd8c3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cargo build --release
(Example files included in assets folder):

```bash
./target/release/dna_sequence_analysis --reference covid-beta.fasta --query covid-delta.fasta --print
cargo run --release -- --reference ./assets/SARS-beta.fasta --query ./assets/SARS-delta.fasta --print
```

Example output:
Expand All @@ -66,6 +66,8 @@ Score:
time taken: 11.037773246s
```

Run `cargo run --release -- --help` to know more about CLI usage

### Citations

1. [Sequence Alignmnt](https://en.wikipedia.org/wiki/Sequence_alignment)
Expand Down
2 changes: 0 additions & 2 deletions examples/covid_varaints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ fn main() -> anyhow::Result<()> {
let delta_record = covid_delta.records().next().unwrap()?;
let delta_seq = delta_record.seq();

// TODO: Comapre all sequences with one another

let score = Score::new(1, -1);
let gap = GapPanelty::new(-5, -1);

Expand Down

0 comments on commit edd8c3c

Please sign in to comment.