1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/*
* Copyright (C) 2011 Regents of the University of Michigan,
* Hyun Min Kang, Matthew Flickenger, Matthew Snyder,
* and Goncalo Abecasis
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string>
#include "VcfRecordFilter.h"
#include "VcfHelper.h"
bool VcfRecordFilter::ourParseFilter = false;
bool VcfRecordFilter::read(IFILE filePtr)
{
static const std::string fieldStopCharsNoParse = "\n\t";
static const int tabPos = 1;
static std::string fieldStopChars = fieldStopCharsNoParse;
fieldStopChars += FILTER_DELIM;
// The start of the first character in stopChars that means there is more
// filter info in the format field, so continue reading the format field.
static const int contPos = fieldStopCharsNoParse.length();
// Clear out any previously set values.
reset();
if(ifeof(filePtr))
{
// End of file, just return false.
return(false);
}
// Check how much the filter should be parsed.
int stopPos = 0;
if(!ourParseFilter)
{
// Do not need to parse the filter, so just read until the tab.
stopPos = filePtr->readTilChar(fieldStopCharsNoParse, myFilterString);
}
else
{
// Parse the filter as we go.
stopPos = contPos;
std::string* nextFilter;
while(stopPos >= contPos)
{
nextFilter = &(myFilterVector.getNextEmpty());
stopPos = filePtr->readTilChar(fieldStopChars, *nextFilter);
}
}
return(stopPos == tabPos);
}
void VcfRecordFilter::reset()
{
myFilterString.clear();
myFilterVector.reset();
}
bool VcfRecordFilter::passedAllFilters()
{
static std::string pass("PASS");
return(pass.compare(getString()) == 0);
}
const std::string& VcfRecordFilter::getString()
{
// Check if the filter string needs to be set.
if(myFilterString.size() == 0)
{
// Filter string is not yet set, so set it.
for(int i = 0; i < myFilterVector.size(); i++)
{
if(i != 0)
{
myFilterString += ';';
}
myFilterString += myFilterVector.get(i);
}
}
return(myFilterString);
}
int VcfRecordFilter::getNumFilters()
{
// Check if the filter has been parsed.
if(myFilterVector.size() == 0)
{
// Filter is not parsed, so parse the filter.
VcfHelper::parseString(myFilterString, FILTER_DELIM, myFilterVector);
}
return(myFilterVector.size());
}
const std::string& VcfRecordFilter::getString(int index)
{
// Check if the filter has been parsed yet.
if(myFilterVector.size() == 0)
{
// Filter has not yet been parsed, so parse it.
VcfHelper::parseString(myFilterString, FILTER_DELIM, myFilterVector);
}
return(myFilterVector.get(index));
}
void VcfRecordFilter::setFilter(const char* filter)
{
reset();
myFilterString = filter;
}
void VcfRecordFilter::addFilter(const char* filter)
{
// If both are empty, add to both.
if((myFilterString.size() == 0) &&
(myFilterVector.size() == 0))
{
myFilterString += filter;
myFilterVector.getNextEmpty() = filter;
}
else
{
// Either filter (or both) have contents, so append
// as appropriate.
if(myFilterString.size() != 0)
{
// String is set, so add the filter to the string.
myFilterString += ';';
myFilterString += filter;
}
if(myFilterVector.size() != 0)
{
// Vector is set, so add the filter to the vector.
myFilterVector.getNextEmpty() = filter;
}
}
}
|