X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=makecontigscommand.h;h=2308b657acf7951be6373a527f44546b555a7d2f;hb=035f86272c776e1cccaa47021e26782e49cd41e7;hp=cc088421bd7772cc6e6841abb178ab1ffd1e9a3f;hpb=e7ae6e6b27c45b5691c19f423ec56faae8e2f255;p=mothur.git diff --git a/makecontigscommand.h b/makecontigscommand.h index cc08842..2308b65 100644 --- a/makecontigscommand.h +++ b/makecontigscommand.h @@ -41,7 +41,8 @@ public: string getCommandName() { return "make.contigs"; } string getCommandCategory() { return "Sequence Processing"; } //commmand category choices: Sequence Processing, OTU-Based Approaches, Hypothesis Testing, Phylotype Analysis, General, Clustering and Hidden - string getHelpString(); + string getOutputFileNameTag(string, string); + string getHelpString(); string getCitation() { return "http://www.mothur.org/wiki/Make.contigs"; } string getDescription() { return "description"; } @@ -167,7 +168,7 @@ static DWORD WINAPI MyContigsThreadFunction(LPVOID lpParam){ contigScores.push_back(scores1[ABaseMap[i]]); if (scores1[ABaseMap[i]] < scores2[BBaseMap[i]]) { contigScores[i] = scores2[BBaseMap[i]]; } }else if (((seq1[i] == '.') || (seq1[i] == '-')) && ((seq2[i] != '-') && (seq2[i] != '.'))) { //seq1 is a gap and seq2 is a base, choose seq2, unless quality score for base is below threshold. In that case eliminate base - if (scores2[BBaseMap[i]] >= pDataArray->threshold)) { + if (scores2[BBaseMap[i]] >= pDataArray->threshold) { contig += seq2[i]; contigScores.push_back(scores2[BBaseMap[i]]); }