Skip to content

Commit

Permalink
add forgotten semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
Sawwave committed Sep 7, 2023
1 parent 0949c2b commit bb6e721
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ this will load all sequences in the fasta and all models in the .hmm file to the

HAVAC can then be invoked to search the sequence collection with all the models. This can be done synchronously
```
havacDriver->runHardwareClient()
havacDriver->runHardwareClient();
```

to force the driver to wait until the hardware is done. Alternatively, the hardware can be invoked asynchronously:
Expand Down Expand Up @@ -85,7 +85,7 @@ havacDriver->waitHardwareClientAsync();

After the hardware is finished with its computation, the hits can be recovered via
```
vector<HavacHit> reportedHits = havacDriver->getHitsFromFinishedRun()
vector<HavacHit> reportedHits = havacDriver->getHitsFromFinishedRun();
```

This function resolves the hits recovered from the accelerator device to the index of the sequences and models in their corresponding files, and identifies the local position within those sequences and models. Here's what the hit reports will look like:
Expand Down

0 comments on commit bb6e721

Please sign in to comment.