From 4f9e6bb66c1526d50857f55457fd331a778d4b43 Mon Sep 17 00:00:00 2001 From: Milot Mirdita Date: Fri, 15 May 2020 13:55:16 +0200 Subject: [PATCH] Remove outdated comment --- src/util/FindPam.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util/FindPam.cpp b/src/util/FindPam.cpp index 9698d83..cfeae76 100644 --- a/src/util/FindPam.cpp +++ b/src/util/FindPam.cpp @@ -144,7 +144,6 @@ int findpam(int argc, const char **argv, const Command& command) { } std::vector columns = Util::split(line, "\t"); size_t tsetid = Util::fast_atoi(columns[0].c_str()); - // should we not call getId first? is this not a key? size_t contigid = Util::fast_atoi(setReader.getDataByDBKey(tsetid, thread_idx)); char *data = targetReader.getDataByDBKey(contigid, thread_idx); size_t qstart = Util::fast_atoi(columns[5].c_str()) - 1;