File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ void argConv0(LambdaOptions & options)
208208
209209 // query file
210210 if (options.qryOrigAlphabet ==
211- AlphabetEnum::DNA4) // means "auto", as dna4 not valid as argument to --query -alphabet
211+ AlphabetEnum::DNA4) // means "auto", as dna4 not valid as argument to --input -alphabet
212212 {
213213 myPrint (options, 1 , " Detecting query alphabet... " );
214214 options.qryOrigAlphabet = detectSeqFileAlphabet (options.queryFile );
Original file line number Diff line number Diff line change @@ -94,8 +94,8 @@ inline AlphabetEnum detectSeqFileAlphabet(std::string const & path)
9494 else if (all_valid<bio::alphabet::dna15>(seq))
9595 {
9696 std::cerr << " \n WARNING: You query file was detected as non-standard DNA, but it could be AminoAcid, too.\n "
97- " To explicitly read as AminoAcid, add '--query -alphabet aminoacid'.\n "
98- " To ignore and disable this warning, add '--query -alphabet dna5'.\n " ;
97+ " To explicitly read as AminoAcid, add '--input -alphabet aminoacid'.\n "
98+ " To ignore and disable this warning, add '--input -alphabet dna5'.\n " ;
9999 return AlphabetEnum::DNA5;
100100 }
101101 else if (all_valid<bio::alphabet::aa27>(seq))
You can’t perform that action at this time.
0 commit comments