From 6f45232ac8daca14e354ae320a4359056ec524c2 Mon Sep 17 00:00:00 2001 From: Milot Mirdita Date: Tue, 31 Oct 2023 17:15:26 +0900 Subject: [PATCH] Revert "Fix invalid thread number for gff2db lookupwriter" This reverts commit 7b95387f93e38c3911f9188bc702d63ed3194013. --- src/util/gff2db.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/gff2db.cpp b/src/util/gff2db.cpp index f11264699..6266e08f7 100644 --- a/src/util/gff2db.cpp +++ b/src/util/gff2db.cpp @@ -33,7 +33,7 @@ int gff2db(int argc, const char **argv, const Command &command) { headerWriter.open(); std::string outLookup = outDb + ".lookup"; std::string outLookupIndex = outDb + ".lookup.index"; - DBWriter lookupWriter(outLookup.c_str(), outLookupIndex.c_str(), par.threads, par.compressed, Parameters::DBTYPE_OMIT_FILE); + DBWriter lookupWriter(outLookup.c_str(), outLookupIndex.c_str(), par.threads, 0, Parameters::DBTYPE_OMIT_FILE); lookupWriter.open(); FILE *source = FileUtil::openAndDelete((outDb + ".source").c_str(), "w");