Skip to content

Commit

Permalink
versio 10.9 - fix missing BAFs
Browse files Browse the repository at this point in the history
  • Loading branch information
valeu committed Jul 6, 2017
1 parent 89836f2 commit 20346cd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ChrCopyNumber.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1678,7 +1678,7 @@ void ChrCopyNumber::addBAFinfo(SNPinGenome & snpingenome,int indexSNP) {
}
else
{
i=max(-1,i-windowSize_/step_-1);
i=max(-1,i-windowSize_/step_-2); //changed -1 to -2 in version 10.9
}
//cout << SNPcount << " out of "<< totalSNPnumber<<"\n";
}
Expand Down
Binary file modified src/freec
Binary file not shown.
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#define VERSION_H

const double VERSION_OFFSET = 3;
const double FREEC_VERSION = 10.8;
const double FREEC_VERSION = 10.9;
const double CONTROL_FREEC_VERSION = FREEC_VERSION - VERSION_OFFSET;

#endif

0 comments on commit 20346cd

Please sign in to comment.