Skip to content

Commit

Permalink
fastx by reference
Browse files Browse the repository at this point in the history
  • Loading branch information
gf777 committed Jun 12, 2024
1 parent a1be80c commit 7045162
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gfalibs
Submodule gfalibs updated 2 files
+3 −3 include/fastx.h
+3 −6 include/kmer.h
2 changes: 1 addition & 1 deletion src/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void Input::read(short unsigned int mode) { // reads the actual input and perfor
unsigned int numFiles = userInput.inReads.size();

for (unsigned int i = 0; i < numFiles; ++i) // for each input read file
loadKmers(userInput, &kcount, 'r', i); // specialized function to process reads into kmers as hashes
loadKmers(userInput, kcount, 'r', i); // specialized function to process reads into kmers as hashes

lg.verbose("Reads loaded.");
kcount.finalize();
Expand Down

0 comments on commit 7045162

Please sign in to comment.