Skip to content

Commit

Permalink
Remove extra white space from pca command
Browse files Browse the repository at this point in the history
Issue mothur#34
  • Loading branch information
mothur-westcott committed Jun 17, 2015
1 parent 584e25b commit 6f7df62
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions source/commands/pcacommand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,10 +452,8 @@ void PCACommand::output(string fbase, string label, vector<string> name_list, ve
pcaData << endl;

for(int i=0;i<name_list.size();i++){
pcaData << name_list[i] << '\t';
for(int j=0;j<numEigenValues;j++){
pcaData << G[i][j] << '\t';
}
pcaData << name_list[i];
for(int j=0;j<numEigenValues;j++){ pcaData << '\t' << G[i][j]; }
pcaData << endl;
}
}
Expand Down

0 comments on commit 6f7df62

Please sign in to comment.