Skip to content

Commit

Permalink
comment to change names in the header files to more general labels
Browse files Browse the repository at this point in the history
  • Loading branch information
josura committed Aug 16, 2023
1 parent f8c1876 commit 8bae1ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ std::map<std::string,std::vector<std::tuple<std::string,std::string,double>>> ce
getline (myfile,line); // first line is header IMPORTANT
std::vector<std::string> entriesHeader = splitString(line, "\t");
int indexCellStart=-1,indexCellEnd=-1,indexLigandStart=-1,indexReceptorEnd=-1,indexWeight=-1;
for(uint i = 0; i < entriesHeader.size(); i++){
for(uint i = 0; i < entriesHeader.size(); i++){ //TODO change names in the header to be more general
if (boost::algorithm::to_lower_copy(entriesHeader[i]).find("startcell") != std::string::npos) {
indexCellStart = i;
}
Expand Down

0 comments on commit 8bae1ae

Please sign in to comment.