X-Git-Url: https://git.donarmstrong.com/?p=mothur.git;a=blobdiff_plain;f=matrixoutputcommand.h;h=5ddfb2c1c788e2d09f0f7ffcf4658a04f9e79c47;hp=90f120602e70dc04600b3048bab41bde21b21edc;hb=a2cde58c1e72199498a2142983ef040dce36da10;hpb=c85db0a4be3a1f8037a71a23ca73f9762184e28a diff --git a/matrixoutputcommand.h b/matrixoutputcommand.h index 90f1206..5ddfb2c 100644 --- a/matrixoutputcommand.h +++ b/matrixoutputcommand.h @@ -54,6 +54,7 @@ #include "memchord.h" #include "memeuclidean.h" #include "mempearson.h" +#include "sharedjsd.h" // aka. dist.shared() @@ -224,7 +225,10 @@ static DWORD WINAPI MyDistSharedThreadFunction(LPVOID lpParam){ matrixCalculators.push_back(new MemEuclidean()); }else if (pDataArray->Estimators[i] == "mempearson") { matrixCalculators.push_back(new MemPearson()); + }else if (pDataArray->Estimators[i] == "jsd") { + matrixCalculators.push_back(new JSD()); } + } }