Loading src/holders.hpp +10 −1 Original line number Diff line number Diff line Loading @@ -385,7 +385,16 @@ public: ArrayGaps>; using TAlignRow1 = Gaps<typename Infix<typename Value<typename TGlobalHolder::TTransSubjSeqs>::Type>::Type, ArrayGaps>; #if (SEQAN_VERSION_MINOR < 4) using TDPContext = DPContext<typename Value<typename TGlobalHolder::TScoreScheme>::Type, TScoreExtension>; #else using TCellValue = int16_t; using TDPCell = DPCell_<TCellValue, TScoreExtension>; using TTraceValue = typename TraceBitMap_<TCellValue>::Type; using TScoreHost = String<TDPCell, Alloc<OverAligned> >; using TTraceHost = String<TTraceValue, Alloc<OverAligned> >; using TDPContext = DPContext<TDPCell, TTraceValue, TScoreHost, TTraceHost>; #endif using TAliExtContext = AliExtContext_<TAlignRow0, TAlignRow1, TDPContext>; TAliExtContext alignContext; Loading src/options.hpp +3 −3 Original line number Diff line number Diff line Loading @@ -420,14 +420,14 @@ parseCommandLine(LambdaOptions & options, int argc, char const ** argv) "Query sequences.", ArgParseArgument::INPUT_FILE, "IN")); setValidValues(parser, "query", toCString(concat(getFileExtensions(SeqFileIn()), ' '))); setValidValues(parser, "query", getFileExtensions(SeqFileIn())); setRequired(parser, "q"); addOption(parser, ArgParseOption("d", "database", "Path to original database sequences (a precomputed index with .sa or .fm needs to exist!).", ArgParseArgument::INPUT_FILE, "IN")); setValidValues(parser, "database", toCString(concat(getFileExtensions(SeqFileIn()), ' '))); setValidValues(parser, "database", getFileExtensions(SeqFileIn())); setRequired(parser, "d"); addOption(parser, ArgParseOption("di", "db-index-type", Loading Loading @@ -1048,7 +1048,7 @@ parseCommandLine(LambdaIndexerOptions & options, int argc, char const ** argv) ArgParseArgument::INPUT_FILE, "IN")); setRequired(parser, "database"); setValidValues(parser, "database", toCString(concat(getFileExtensions(SeqFileIn()), ' '))); setValidValues(parser, "database", getFileExtensions(SeqFileIn())); addOption(parser, ArgParseOption("s", "segfile", Loading Loading
src/holders.hpp +10 −1 Original line number Diff line number Diff line Loading @@ -385,7 +385,16 @@ public: ArrayGaps>; using TAlignRow1 = Gaps<typename Infix<typename Value<typename TGlobalHolder::TTransSubjSeqs>::Type>::Type, ArrayGaps>; #if (SEQAN_VERSION_MINOR < 4) using TDPContext = DPContext<typename Value<typename TGlobalHolder::TScoreScheme>::Type, TScoreExtension>; #else using TCellValue = int16_t; using TDPCell = DPCell_<TCellValue, TScoreExtension>; using TTraceValue = typename TraceBitMap_<TCellValue>::Type; using TScoreHost = String<TDPCell, Alloc<OverAligned> >; using TTraceHost = String<TTraceValue, Alloc<OverAligned> >; using TDPContext = DPContext<TDPCell, TTraceValue, TScoreHost, TTraceHost>; #endif using TAliExtContext = AliExtContext_<TAlignRow0, TAlignRow1, TDPContext>; TAliExtContext alignContext; Loading
src/options.hpp +3 −3 Original line number Diff line number Diff line Loading @@ -420,14 +420,14 @@ parseCommandLine(LambdaOptions & options, int argc, char const ** argv) "Query sequences.", ArgParseArgument::INPUT_FILE, "IN")); setValidValues(parser, "query", toCString(concat(getFileExtensions(SeqFileIn()), ' '))); setValidValues(parser, "query", getFileExtensions(SeqFileIn())); setRequired(parser, "q"); addOption(parser, ArgParseOption("d", "database", "Path to original database sequences (a precomputed index with .sa or .fm needs to exist!).", ArgParseArgument::INPUT_FILE, "IN")); setValidValues(parser, "database", toCString(concat(getFileExtensions(SeqFileIn()), ' '))); setValidValues(parser, "database", getFileExtensions(SeqFileIn())); setRequired(parser, "d"); addOption(parser, ArgParseOption("di", "db-index-type", Loading Loading @@ -1048,7 +1048,7 @@ parseCommandLine(LambdaIndexerOptions & options, int argc, char const ** argv) ArgParseArgument::INPUT_FILE, "IN")); setRequired(parser, "database"); setValidValues(parser, "database", toCString(concat(getFileExtensions(SeqFileIn()), ' '))); setValidValues(parser, "database", getFileExtensions(SeqFileIn())); addOption(parser, ArgParseOption("s", "segfile", Loading