static void addSharedInfo( const EventInfo& event, VcfWriterSV::InfoTag_t& infoTags) { if (event.isEvent()) { infoTags.push_back( str(boost::format("EVENT=%i") % event.label)); } }
void VcfWriterSomaticSV:: modifyInfo( const EventInfo& event, std::vector<std::string>& infotags) const { infotags.push_back("SOMATIC"); infotags.push_back( str(boost::format("SOMATICSCORE=%i") % getSomaticInfo().somaticScore) ); if (event.isEvent()) { infotags.push_back( str(boost::format("JUNCTION_SOMATICSCORE=%i") % getSingleJunctionSomaticInfo().somaticScore) ); } }