Skip to content

Commit

Permalink
updated reverse complement to handle ambiguous bases
Browse files Browse the repository at this point in the history
  • Loading branch information
EVAN A. BOYLE committed Feb 23, 2014
1 parent 71d8129 commit ec0acf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MinusSVMipv4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ string reverse_comp (string seq) {
case 'T':
rev_comp.append("A");
break;
default:
rev_comp.append(string(1, seq[i]));
}
}
return rev_comp;
Expand Down
Binary file modified mipgen
Binary file not shown.

0 comments on commit ec0acf8

Please sign in to comment.