diff --git a/src/mapgd_0.4/commands/relatedness.h b/src/mapgd_0.4/commands/relatedness.h index 57404ba6..3a48173c 100644 --- a/src/mapgd_0.4/commands/relatedness.h +++ b/src/mapgd_0.4/commands/relatedness.h @@ -87,5 +87,8 @@ newton(Relatedness &rel, std::map &hashed_genotype void get_llr(Relatedness &rel, std::map hashed_genotypes); +void +get_95CI(Relatedness &rel, std::map hashed_genotypes); + #endif diff --git a/src/mapgd_0.4/mpi/mpi_relatedness.cc b/src/mapgd_0.4/mpi/mpi_relatedness.cc index f96960b7..f3a95d96 100644 --- a/src/mapgd_0.4/mpi/mpi_relatedness.cc +++ b/src/mapgd_0.4/mpi/mpi_relatedness.cc @@ -168,7 +168,7 @@ int estimateRel(int argc, char *argv[]) } if ( chunk*taskid <= z && z < chunk*(taskid+1) ) { - hashed_genotypes=hash_genotypes(file_buffer, x, y, l2o); + hashed_genotypes=hash_genotypes(file_buffer, x, y, l2o, false); // down_genotypes=downsample_genotypes(file_buffer, x, y, l2o); relatedness.zero(); set_e(relatedness, hashed_genotypes);