Skip to content

Commit

Permalink
re-enable dupes in column iterator. not sure when or how they were tu…
Browse files Browse the repository at this point in the history
…rned off...
  • Loading branch information
glennhickey committed Jul 24, 2013
1 parent 2c1120a commit 5bf4419
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions phyloP/impl/halPhyloP.cpp
Expand Up @@ -218,8 +218,7 @@ void PhyloP::processSequence(const Sequence* sequence,
ColumnIteratorConstPtr colIt =
sequence->getColumnIterator(&_targetSet,
0, pos,
last - 1,
true);
last - 1);

// note wig coordinates are 1-based for some reason so we shift to right
*_outStream << "fixedStep chrom=" << sequenceName << " start=" << start + 1
Expand Down Expand Up @@ -330,7 +329,7 @@ double PhyloP::pval(const ColumnIterator::ColumnMap *cmap)
}
}

for (int i=0; i < _msa->nseqs; i++)
for (int i = 0; i < _msa->nseqs; i++)
{
if (_msa->ss->col_tuples[0][i] == '*')
{
Expand Down

0 comments on commit 5bf4419

Please sign in to comment.