Skip to content

Commit

Permalink
Fixed a bug with not using the proper temp dir for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
iminkin committed May 18, 2017
1 parent a5765ca commit 580402e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ TwoPaCo 0.9.2
=============
* Fixed path output for both GFA1 and GFA2
* Added FASTA output format for dump
* Fixed a bug of not using the proper temporary directory when running tests

TwoPaCo 0.9.1
=============
Expand Down
2 changes: 1 addition & 1 deletion src/graphconstructor/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ namespace TwoPaCo
for (size_t thr = threads.first; thr < threads.second; ++thr)
{
std::stringstream null;
std::unique_ptr<TwoPaCo::VertexEnumerator> vid = CreateEnumerator(fileName, k, filterBits, hf, r, thr, "tmp", temporaryEdge, null);
std::unique_ptr<TwoPaCo::VertexEnumerator> vid = CreateEnumerator(fileName, k, filterBits, hf, r, thr, temporaryDir, temporaryEdge, null);
for (size_t i = 0; i < chrNumber; i++)
{
fastMarks[i].assign(chr[i].size(), false);
Expand Down

0 comments on commit 580402e

Please sign in to comment.