Skip to content

Commit 5bd8ad0

Browse files
committed
v0.7.8
1 parent 48a47a4 commit 5bd8ad0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/coverage.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ annotateCoverage(TConfig& c, TSampleLibrary& sampleLib, TCovRecord& ict, TCovera
549549
std::string padNumber = boost::lexical_cast<std::string>(itBp->id);
550550
padNumber.insert(padNumber.begin(), 8 - padNumber.length(), '0');
551551
svid += padNumber;
552-
dumpOut << svid << "\t" << c.files[file_c].string() << "\t" << bam_get_qname(rec) << "\t" << hdr[file_c]->target_name[rec->core.tid] << "\t" << rec->core.pos << "\t" << hdr[file_c]->target_name[rec->core.mtid] << "\t" << rec->core.mpos << "\t" << rec->core.qual << "\tSR" << std::endl;
552+
dumpOut << svid << "\t" << c.files[file_c].string() << "\t" << bam_get_qname(rec) << "\t" << hdr[file_c]->target_name[rec->core.tid] << "\t" << rec->core.pos << "\t" << hdr[file_c]->target_name[rec->core.mtid] << "\t" << rec->core.mpos << "\t" << (int32_t) rec->core.qual << "\tSR" << std::endl;
553553
}
554554
countMap[file_c][itBp->id].alt.push_back((uint8_t) std::min(aq, (uint32_t) rec->core.qual));
555555
if (hpptr) {
@@ -693,7 +693,7 @@ annotateCoverage(TConfig& c, TSampleLibrary& sampleLib, TCovRecord& ict, TCovera
693693
std::string padNumber = boost::lexical_cast<std::string>(itSpan->id);
694694
padNumber.insert(padNumber.begin(), 8 - padNumber.length(), '0');
695695
svid += padNumber;
696-
dumpOut << svid << "\t" << c.files[file_c].string() << "\t" << bam_get_qname(rec) << "\t" << hdr[file_c]->target_name[rec->core.tid] << "\t" << rec->core.pos << "\t" << hdr[file_c]->target_name[rec->core.mtid] << "\t" << rec->core.mpos << "\t" << rec->core.qual << "\tPE" << std::endl;
696+
dumpOut << svid << "\t" << c.files[file_c].string() << "\t" << bam_get_qname(rec) << "\t" << hdr[file_c]->target_name[rec->core.tid] << "\t" << rec->core.pos << "\t" << hdr[file_c]->target_name[rec->core.mtid] << "\t" << rec->core.mpos << "\t" << (int32_t) rec->core.qual << "\tPE" << std::endl;
697697
}
698698
spanMap[file_c][itSpan->id].alt.push_back(pairQuality);
699699
if (hpptr) {

src/delly.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ int delly(int argc, char **argv) {
377377
geno.add_options()
378378
("vcffile,v", boost::program_options::value<boost::filesystem::path>(&c.vcffile), "input VCF/BCF file for genotyping")
379379
("geno-qual,u", boost::program_options::value<unsigned short>(&c.minGenoQual)->default_value(5), "min. mapping quality for genotyping")
380-
("dump,d", boost::program_options::value<boost::filesystem::path>(&c.srpedump), "dump SR and PE info (slow)")
380+
("dump,d", boost::program_options::value<boost::filesystem::path>(&c.srpedump), "gzipped output file for SV-reads (optional)")
381381
;
382382

383383
// Define hidden options

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace torali
2828
{
2929

3030

31-
std::string dellyVersionNumber = "0.7.7";
31+
std::string dellyVersionNumber = "0.7.8";
3232

3333
inline
3434
void printTitle(std::string const& title)

0 commit comments

Comments
 (0)