Skip to content

Commit

Permalink
v10.4: can create minipileup from vcf.gz
Browse files Browse the repository at this point in the history
  • Loading branch information
valeu committed Feb 3, 2017
1 parent b39300f commit bae2244
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BAFpileup.cpp
Expand Up @@ -247,7 +247,7 @@ std::string BAFpileup::intersectWithBedtools(std::string makeminipileup, std::st
FILE *stream;
std::string intersected = outputDir + "_SNPinNewCaptureRegions.bed";

if (makeminipileup.substr(makeminipileup.size()-3,3).compare("vcf")==0) {
if (makeminipileup.substr(makeminipileup.size()-3,3).compare("vcf")==0 || makeminipileup.substr(makeminipileup.size()-6,6).compare("vcf.gz")==0) {
intersected = outputDir + "_SNPinNewCaptureRegions.vcf";
}

Expand Down
Binary file modified src/freec
Binary file not shown.
2 changes: 1 addition & 1 deletion src/version.h
Expand Up @@ -3,7 +3,7 @@
#define VERSION_H

const double VERSION_OFFSET = 3;
const double FREEC_VERSION = 10.3;
const double FREEC_VERSION = 10.4;
const double CONTROL_FREEC_VERSION = FREEC_VERSION - VERSION_OFFSET;

#endif

0 comments on commit bae2244

Please sign in to comment.