Skip to content

Commit

Permalink
version 11.1. Bug reading minipileup for control experiment - fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
valeu committed Dec 5, 2017
1 parent 246df00 commit 5b1748b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified src/freec
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ int main(int argc, char *argv[])
std::string makePileup = (std::string)cf.Value("BAF","makePileup", "false");
std::string fastaFile = (std::string)cf.Value("BAF","fastaFile", "false");
std::string miniPileupFileSample = (std::string)cf.Value("sample","miniPileup", "false");
std::string miniPileupFileControl = (std::string)cf.Value("sample","miniPileup", "false");
std::string miniPileupFileControl = (std::string)cf.Value("control","miniPileup", "false");

bool isHasMiniPileUPsample = (miniPileupFileSample=="false")?0:1;
bool isHasMiniPileUPcontrol = (miniPileupFileControl=="false")?0:1;
Expand Down
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 = 11.0;
const double FREEC_VERSION = 11.1;
const double CONTROL_FREEC_VERSION = FREEC_VERSION - VERSION_OFFSET;

#endif

0 comments on commit 5b1748b

Please sign in to comment.