Skip to content

Commit

Permalink
Updated list of allowed prefixes for contig omptimization
Browse files Browse the repository at this point in the history
  • Loading branch information
FischerJo committed Aug 28, 2019
1 parent 8b9f257 commit 7f2fa60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RefReader_istr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void readReference(const std::string& filename, std::vector<struct CpG>& cpgTab,
{
// check if primary assembly
// (GRCH versions)
if (*(line.begin() + 1) == 'C')
if (*(line.begin() + 1) == 'C' || (*(line.begin() + 1) == 'N' && *(line.begin() + 2) == 'C'))
{

++chrIndex;
Expand Down

0 comments on commit 7f2fa60

Please sign in to comment.