Skip to content

Commit 5b1748b

Browse files
committed
version 11.1. Bug reading minipileup for control experiment - fixed
1 parent 246df00 commit 5b1748b

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/freec

0 Bytes
Binary file not shown.

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ int main(int argc, char *argv[])
356356
std::string makePileup = (std::string)cf.Value("BAF","makePileup", "false");
357357
std::string fastaFile = (std::string)cf.Value("BAF","fastaFile", "false");
358358
std::string miniPileupFileSample = (std::string)cf.Value("sample","miniPileup", "false");
359-
std::string miniPileupFileControl = (std::string)cf.Value("sample","miniPileup", "false");
359+
std::string miniPileupFileControl = (std::string)cf.Value("control","miniPileup", "false");
360360

361361
bool isHasMiniPileUPsample = (miniPileupFileSample=="false")?0:1;
362362
bool isHasMiniPileUPcontrol = (miniPileupFileControl=="false")?0:1;

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#define VERSION_H
44

55
const double VERSION_OFFSET = 3;
6-
const double FREEC_VERSION = 11.0;
6+
const double FREEC_VERSION = 11.1;
77
const double CONTROL_FREEC_VERSION = FREEC_VERSION - VERSION_OFFSET;
88

99
#endif

0 commit comments

Comments
 (0)