From b9758364059d52e153a9f1b4fcae3bc3f3e68422 Mon Sep 17 00:00:00 2001
From: Pjotr Prins
Date: Fri, 7 Jul 2017 06:54:26 +0000
Subject: Fix spacing
---
src/prdt.cpp | 188 +++++++++++++++++++++++++++++------------------------------
1 file changed, 94 insertions(+), 94 deletions(-)
(limited to 'src/prdt.cpp')
diff --git a/src/prdt.cpp b/src/prdt.cpp
index db0fa14..b29d150 100644
--- a/src/prdt.cpp
+++ b/src/prdt.cpp
@@ -1,17 +1,17 @@
/*
Genome-wide Efficient Mixed Model Association (GEMMA)
Copyright (C) 2011-2017, Xiang Zhou
-
+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
@@ -24,7 +24,7 @@
#include
#include
#include
-#include
+#include
#include
#include "gsl/gsl_vector.h"
#include "gsl/gsl_matrix.h"
@@ -43,36 +43,36 @@ using namespace std;
void PRDT::CopyFromParam (PARAM &cPar) {
a_mode=cPar.a_mode;
d_pace=cPar.d_pace;
-
+
file_bfile=cPar.file_bfile;
file_geno=cPar.file_geno;
file_out=cPar.file_out;
path_out=cPar.path_out;
-
- indicator_pheno=cPar.indicator_pheno;
+
+ indicator_pheno=cPar.indicator_pheno;
indicator_cvt=cPar.indicator_cvt;
indicator_idv=cPar.indicator_idv;
-
+
snpInfo=cPar.snpInfo;
mapRS2est=cPar.mapRS2est;
-
+
time_eigen=0;
-
+
n_ph=cPar.n_ph;
np_obs=cPar.np_obs;
np_miss=cPar.np_miss;
ns_total=cPar.ns_total;
- ns_test=0;
-
+ ns_test=0;
+
return;
}
void PRDT::CopyToParam (PARAM &cPar) {
cPar.ns_test=ns_test;
cPar.time_eigen=time_eigen;
-
+
return;
-}
+}
void PRDT::WriteFiles (gsl_vector *y_prdt) {
string file_str;
@@ -80,13 +80,13 @@ void PRDT::WriteFiles (gsl_vector *y_prdt) {
file_str+=".";
file_str+="prdt";
file_str+=".txt";
-
+
ofstream outfile (file_str.c_str(), ofstream::out);
if (!outfile) {
cout<<"error writing file: "<size, ni_total=G->size1;
-
+
gsl_matrix *Goo=gsl_matrix_alloc (ni_test, ni_test);
gsl_matrix *Gfo=gsl_matrix_alloc (ni_total-ni_test, ni_test);
- gsl_matrix *U=gsl_matrix_alloc (ni_test, ni_test);
+ gsl_matrix *U=gsl_matrix_alloc (ni_test, ni_test);
gsl_vector *eval=gsl_vector_alloc (ni_test);
gsl_vector *Utu=gsl_vector_alloc (ni_test);
gsl_vector *w=gsl_vector_alloc (ni_total);
gsl_permutation *pmt=gsl_permutation_alloc (ni_test);
-
+
//center matrix G based on indicator_idv
for (size_t i=0; isize; i++) {
d=gsl_vector_get(eval, i);
@@ -189,7 +189,7 @@ void PRDT::AddBV (gsl_matrix *G, const gsl_vector *u_hat, gsl_vector *y_prdt) {
}
gsl_blas_dgemv (CblasNoTrans, 1.0, U, Utu, 0.0, eval);
gsl_blas_dgemv (CblasNoTrans, 1.0, Gfo, eval, 1.0, y_prdt);
-
+
// Free matrices.
gsl_matrix_free(Goo);
gsl_matrix_free(Gfo);
@@ -199,7 +199,7 @@ void PRDT::AddBV (gsl_matrix *G, const gsl_vector *u_hat, gsl_vector *y_prdt) {
gsl_vector_free(w);
gsl_permutation_free(pmt);
- return;
+ return;
}
void PRDT::AnalyzeBimbam (gsl_vector *y_prdt) {
@@ -208,17 +208,17 @@ void PRDT::AnalyzeBimbam (gsl_vector *y_prdt) {
cout<<"error reading genotype file:"<size);
gsl_vector *x_miss=gsl_vector_alloc (y_prdt->size);
-
+
ns_test=0;
// Start reading genotypes and analyze.
@@ -227,24 +227,24 @@ void PRDT::AnalyzeBimbam (gsl_vector *y_prdt) {
if (t%d_pace==0 || t==(ns_total-1)) {
ProgressBar ("Reading SNPs ", t, ns_total-1);
}
-
+
ch_ptr=strtok ((char *)line.c_str(), " , \t");
rs=ch_ptr;
ch_ptr=strtok (NULL, " , \t");
- ch_ptr=strtok (NULL, " , \t");
-
+ ch_ptr=strtok (NULL, " , \t");
+
if (mapRS2est.count(rs)==0) {
continue;
} else {
effect_size=mapRS2est[rs];
}
-
+
x_mean=0.0;
c_phen=0;
n_miss=0;
x_train_mean=0;
n_train_nomiss=0;
-
+
gsl_vector_set_zero(x_miss);
for (size_t i=0; isize-n_miss);
x_train_mean/=(double)(n_train_nomiss);
-
-
+
+
for (size_t i=0; isize; ++i) {
geno=gsl_vector_get(x, i);
if (gsl_vector_get (x_miss, i)==0) {
@@ -291,17 +291,17 @@ void PRDT::AnalyzeBimbam (gsl_vector *y_prdt) {
gsl_vector_scale (x, effect_size);
gsl_vector_add (y_prdt, x);
-
+
ns_test++;
- }
+ }
cout< b;
+ bitset<8> b;
string rs;
-
+
size_t n_bit, n_miss, ci_total, ci_test, n_train_nomiss;
double geno, x_mean, x_train_mean, effect_size;
-
+
gsl_vector *x=gsl_vector_alloc (y_prdt->size);
-
+
// Calculate n_bit and c, the number of bit for each SNP.
if (indicator_idv.size()%4==0) {n_bit=indicator_idv.size()/4;}
else {n_bit=indicator_idv.size()/4+1; }
-
+
// Print the first 3 magic numbers.
for (size_t i=0; i<3; ++i) {
infile.read(ch,1);
b=ch[0];
- }
-
+ }
+
ns_test=0;
-
+
for (vector::size_type t=0; tsize==n_miss) {
cout << "snp " << rs << " has missing genotype for all " <<
"individuals and will be ignored."<size-n_miss);
x_train_mean/=(double)(n_train_nomiss);
-
+
for (size_t i=0; isize; ++i) {
geno=gsl_vector_get(x, i);
if (geno==-9) {
@@ -425,47 +425,47 @@ void PRDT::AnalyzePlink (gsl_vector *y_prdt) {
gsl_vector_set(x, i, geno-x_train_mean);
}
}
-
+
gsl_vector_scale (x, effect_size);
gsl_vector_add (y_prdt, x);
-
+
ns_test++;
- }
+ }
cout<::size_type i1=0; i1::size_type j1=0; j1::size_type i2=0;
i2::size_type j2=0;
j2::size_type i=0;
i::size_type j=0; j::size_type i=0;
i::size_type j=0; j